No need to override delegation for completion

This commit is contained in:
Rafal Wojdyla 2016-09-29 22:01:55 -04:00
parent 12f0096963
commit 7b54e49d04

View file

@ -195,9 +195,4 @@ class ScioInterpreter(property: Properties) extends Interpreter(property) {
42
}
override def completion(buf: String, cursor: Int): util.List[InterpreterCompletion] = {
//TODO: implement, delegate?
super.completion(buf, cursor)
}
}