Code cleanup
This commit is contained in:
@@ -22,9 +22,7 @@ class HistoryInfo(
|
||||
if (totalChapters != other.totalChapters) return false
|
||||
if (currentChapter != other.currentChapter) return false
|
||||
if (history != other.history) return false
|
||||
if (isIncognitoMode != other.isIncognitoMode) return false
|
||||
|
||||
return true
|
||||
return isIncognitoMode == other.isIncognitoMode
|
||||
}
|
||||
|
||||
override fun hashCode(): Int {
|
||||
|
||||
@@ -5,7 +5,7 @@ import android.view.View
|
||||
import androidx.recyclerview.widget.RecyclerView
|
||||
import org.koitharu.kotatsu.R
|
||||
|
||||
class ScrobblingItemDecoration() : RecyclerView.ItemDecoration() {
|
||||
class ScrobblingItemDecoration : RecyclerView.ItemDecoration() {
|
||||
|
||||
private var spacing: Int = -1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user