Skip to content
Snippets Groups Projects
Commit d17948a4 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Removed debugging code

parent 3c59f572
No related branches found
No related tags found
No related merge requests found
......@@ -228,19 +228,6 @@ class QuasselViewModel : ViewModel() {
val autoCompleteData = rawAutoCompleteData
.distinctUntilChanged()
.debounce(300, TimeUnit.MILLISECONDS)
.map {
val now = System.currentTimeMillis()
val difference = now - time
if (difference < 300) {
println("Updated too early!: $difference")
}
time = now
if (it == previous) {
println("what the fuck")
}
previous = it
it
}
.switchMap { (sessionOptional, id, lastWord) ->
val session = sessionOptional.orNull()
val bufferSyncer = session?.bufferSyncer
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment