Fix #636. Minor improvements. Dependency updates

This commit is contained in:
len
2017-02-23 22:30:43 +01:00
parent 6de260d73f
commit 4d7b188999
11 changed files with 61 additions and 130 deletions
@@ -22,8 +22,6 @@ interface Track : Serializable {
var status: Int
var update: Boolean
fun copyPersonalFrom(other: Track) {
last_chapter_read = other.last_chapter_read
score = other.score
@@ -20,8 +20,6 @@ class TrackImpl : Track {
override var status: Int = 0
override var update: Boolean = false
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (other == null || javaClass != other.javaClass) return false