mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
ZEPPELIN-804 Refactoring registration mechanism on Interpreters
- Fixed the style
This commit is contained in:
parent
ca7b96c4c4
commit
48ac41d201
1 changed files with 2 additions and 1 deletions
|
|
@ -293,7 +293,8 @@ public abstract class Interpreter {
|
|||
public static void register(String name, String group, String className,
|
||||
Map<String, InterpreterProperty> properties) {
|
||||
logger.error("Static initialization is deprecated. You should change it to use " +
|
||||
"interpreter-setting.json in your jar or interpreter/{interpreter}/interpreter-setting.json");
|
||||
"interpreter-setting.json in your jar or " +
|
||||
"interpreter/{interpreter}/interpreter-setting.json");
|
||||
register(new RegisteredInterpreter(name, group, className, properties));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue