Minor. Add 'operator' modifier in test for handleResult

This commit is contained in:
Denis Zharkov
2016-06-20 14:34:13 +03:00
parent 2e6a48576d
commit ad71934c55
+1 -1
View File
@@ -48,7 +48,7 @@ class GeneratorController<T>() : AbstractIterator<T>() {
setNextStep(c)
}
fun handleResult(result: Unit, c: Continuation<Nothing>) {
operator fun handleResult(result: Unit, c: Continuation<Nothing>) {
done()
}
}