aboutsummaryrefslogtreecommitdiff
path: root/library/src/main/kotlin/ca/allanwang/kau/changelog/Changelog.kt
diff options
context:
space:
mode:
Diffstat (limited to 'library/src/main/kotlin/ca/allanwang/kau/changelog/Changelog.kt')
-rw-r--r--library/src/main/kotlin/ca/allanwang/kau/changelog/Changelog.kt5
1 files changed, 4 insertions, 1 deletions
diff --git a/library/src/main/kotlin/ca/allanwang/kau/changelog/Changelog.kt b/library/src/main/kotlin/ca/allanwang/kau/changelog/Changelog.kt
index ae4c8f9..bca9b12 100644
--- a/library/src/main/kotlin/ca/allanwang/kau/changelog/Changelog.kt
+++ b/library/src/main/kotlin/ca/allanwang/kau/changelog/Changelog.kt
@@ -1,4 +1,4 @@
-package com.pitchedapps.frost.utils
+package ca.allanwang.kau.changelog
import android.content.Context
import android.content.res.XmlResourceParser
@@ -15,6 +15,9 @@ import org.xmlpull.v1.XmlPullParser
/**
* Created by Allan Wang on 2017-05-28.
+ *
+ * Internals of the changelog dialog
+ * Contains an adapter for each item, as well as the tags to parse
*/
internal class ChangelogAdapter(val items: List<Pair<String, ChangelogType>>) : RecyclerView.Adapter<ChangelogAdapter.ChangelogVH>() {