aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/db
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-03-07 15:26:35 -0500
committerAllan Wang <me@allanwang.ca>2019-03-07 15:26:35 -0500
commit9e201159fd6697d83a16b7f7cfc5e7e302d55152 (patch)
tree97698ac749b32b1b4921ba966ff40c84ffb08411 /app/src/main/kotlin/com/pitchedapps/frost/db
parent12f491737ec2e2d774a816e84170ff352d1b6cd6 (diff)
downloadfrost-9e201159fd6697d83a16b7f7cfc5e7e302d55152.tar.gz
frost-9e201159fd6697d83a16b7f7cfc5e7e302d55152.tar.bz2
frost-9e201159fd6697d83a16b7f7cfc5e7e302d55152.zip
Optimize imports
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/db')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt b/app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt
index d5347f18..c6c983fb 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt
@@ -82,6 +82,4 @@ data class CookieModel(@PrimaryKey var id: Long = -1L, var name: String? = null,
BaseModel(), Parcelable {
override fun toString(): String = "CookieModel(${hashCode()})"
-
- fun toSensitiveString(): String = "CookieModel(id=$id, name=$name, cookie=$cookie)"
} \ No newline at end of file