mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Remove abstract and make it return null by default
This commit is contained in:
parent
f8352c774f
commit
bd4f8c09f1
1 changed files with 3 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue