Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public T setVerbose(boolean verbose) {
public abstract SparkAppHandle startApplication(SparkAppHandle.Listener... listeners)
throws IOException;

abstract T self();
protected abstract T self();

private static class ArgumentValidator extends SparkSubmitOptionParser {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public SparkAppHandle startApplication(SparkAppHandle.Listener... listeners) thr
}

@Override
InProcessLauncher self() {
protected InProcessLauncher self() {
return this;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ private ProcessBuilder createBuilder() throws IOException {
}

@Override
SparkLauncher self() {
protected SparkLauncher self() {
return this;
}

Expand Down