ZEPPELIN-804 Refactoring registration mechanism on Interpreters

- Fixed the style
This commit is contained in:
Jongyoul Lee 2016-04-14 12:27:07 +09:00
parent ca7b96c4c4
commit 48ac41d201

View file

@ -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));
}