Remove abstract and make it return null by default

This commit is contained in:
AhyoungRyu 2016-06-10 10:20:12 -07:00
parent f8352c774f
commit bd4f8c09f1

View file

@ -107,7 +107,9 @@ public abstract class Interpreter {
* @return list of possible completion. Return empty list if there're nothing to return.
*/
@ZeppelinApi
public abstract List<InterpreterCompletion> completion(String buf, int cursor);
public List<InterpreterCompletion> completion(String buf, int cursor) {
return null;
}
/**
* Interpreter can implements it's own scheduler by overriding this method.