Skip to content

Commit

Permalink
Remove public from interface methods
Browse files Browse the repository at this point in the history
  • Loading branch information
sgraband committed May 22, 2024
1 parent 9336190 commit c8be993
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@

public interface TheiaCloudOperatorLauncher {

public abstract void runMain(String[] args) throws InterruptedException;
abstract void runMain(String[] args) throws InterruptedException;

public abstract TheiaCloudOperatorArguments createArguments(String[] args);
abstract TheiaCloudOperatorArguments createArguments(String[] args);

public abstract AbstractTheiaCloudOperatorModule createModule(TheiaCloudOperatorArguments arguments);
abstract AbstractTheiaCloudOperatorModule createModule(TheiaCloudOperatorArguments arguments);

}

0 comments on commit c8be993

Please sign in to comment.