mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
change style
This commit is contained in:
parent
6f1343fed1
commit
88dbc71bf6
1 changed files with 21 additions and 19 deletions
|
|
@ -90,15 +90,16 @@ public class RemoteInterpreter extends Interpreter {
|
|||
/**
|
||||
* Connect to existing process
|
||||
*/
|
||||
public RemoteInterpreter(Properties property,
|
||||
String noteId,
|
||||
String className,
|
||||
String host,
|
||||
int port,
|
||||
int connectTimeout,
|
||||
int maxPoolSize,
|
||||
RemoteInterpreterProcessListener remoteInterpreterProcessListener,
|
||||
ApplicationEventListener appListener) {
|
||||
public RemoteInterpreter(
|
||||
Properties property,
|
||||
String noteId,
|
||||
String className,
|
||||
String host,
|
||||
int port,
|
||||
int connectTimeout,
|
||||
int maxPoolSize,
|
||||
RemoteInterpreterProcessListener remoteInterpreterProcessListener,
|
||||
ApplicationEventListener appListener) {
|
||||
super(property);
|
||||
this.noteId = noteId;
|
||||
this.className = className;
|
||||
|
|
@ -113,16 +114,17 @@ public class RemoteInterpreter extends Interpreter {
|
|||
|
||||
|
||||
// VisibleForTesting
|
||||
public RemoteInterpreter(Properties property,
|
||||
String noteId,
|
||||
String className,
|
||||
String interpreterRunner,
|
||||
String interpreterPath,
|
||||
String localRepoPath,
|
||||
Map<String, String> env,
|
||||
int connectTimeout,
|
||||
RemoteInterpreterProcessListener remoteInterpreterProcessListener,
|
||||
ApplicationEventListener appListener) {
|
||||
public RemoteInterpreter(
|
||||
Properties property,
|
||||
String noteId,
|
||||
String className,
|
||||
String interpreterRunner,
|
||||
String interpreterPath,
|
||||
String localRepoPath,
|
||||
Map<String, String> env,
|
||||
int connectTimeout,
|
||||
RemoteInterpreterProcessListener remoteInterpreterProcessListener,
|
||||
ApplicationEventListener appListener) {
|
||||
super(property);
|
||||
this.className = className;
|
||||
this.noteId = noteId;
|
||||
|
|
|
|||
Loading…
Reference in a new issue