aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/facebook/parsers
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-05-01 17:07:18 -0700
committerAllan Wang <me@allanwang.ca>2019-05-01 17:07:18 -0700
commite0bea89b0897d741634098c33bf2aedc5e5fc88e (patch)
treedc9999e87af09f629ec758bd721cbb01a21dd660 /app/src/main/kotlin/com/pitchedapps/frost/facebook/parsers
parent3e768c23b3130d8a9f74baaba0f1f247f0036f84 (diff)
parente7a499f6314f8d6345b19c3e221f3cd9cd176d4f (diff)
downloadfrost-e0bea89b0897d741634098c33bf2aedc5e5fc88e.tar.gz
frost-e0bea89b0897d741634098c33bf2aedc5e5fc88e.tar.bz2
frost-e0bea89b0897d741634098c33bf2aedc5e5fc88e.zip
Apply spotless and update changelog
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/facebook/parsers')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/facebook/parsers/FrostParser.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/facebook/parsers/FrostParser.kt b/app/src/main/kotlin/com/pitchedapps/frost/facebook/parsers/FrostParser.kt
index 24c39e28..6af21259 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/facebook/parsers/FrostParser.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/facebook/parsers/FrostParser.kt
@@ -76,7 +76,7 @@ const val FALLBACK_TIME_MOD = 1000000
data class FrostLink(val text: String, val href: String)
-data class ParseResponse<out T: ParseData>(val cookie: String, val data: T) {
+data class ParseResponse<out T : ParseData>(val cookie: String, val data: T) {
override fun toString() = "ParseResponse\ncookie: $cookie\ndata:\n$data"
}