Remove Source sorting, added searching by source

This commit is contained in:
Jay 2020-01-09 22:29:08 -08:00
parent c692510c54
commit d8e598aaaf
7 changed files with 26 additions and 31 deletions

View file

@ -71,6 +71,10 @@ open class SourceManager(private val context: Context) {
return SourceNotFoundException(context.getString(R.string.source_not_installed, id
.toString()), id)
}
override fun hashCode(): Int {
return id.hashCode()
}
}
}