Skip to content

Commit b7eb86a

Browse files
ctruedendscho
authored andcommitted
ScriptInterpreter: remove irrelevant modifiers
1 parent 64e577c commit b7eb86a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/main/java/org/scijava/script/ScriptInterpreter.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ public interface ScriptInterpreter {
4444
/**
4545
* Reads the persisted history of the current script interpreter.
4646
*/
47-
public void readHistory();
47+
void readHistory();
4848

4949
/**
5050
* Persists the history of the current script interpreter.
5151
*/
52-
public void writeHistory();
52+
void writeHistory();
5353

5454
/**
5555
* Obtains the next/previous command in the command history.
@@ -59,20 +59,20 @@ public interface ScriptInterpreter {
5959
* if false, the previous one
6060
* @return the next/previous command
6161
*/
62-
public String walkHistory(final String currentCommand, boolean forward);
62+
String walkHistory(String currentCommand, boolean forward);
6363

6464
/**
6565
* Evaluates a command.
6666
*
6767
* @param command the command to evaluate
6868
* @throws ScriptException
6969
*/
70-
public void eval(String command) throws ScriptException;
70+
void eval(String command) throws ScriptException;
7171

7272
/**
7373
* Returns the associated {@link ScriptEngine}
7474
*
7575
* @return the script engine
7676
*/
77-
public ScriptEngine getEngine();
77+
ScriptEngine getEngine();
7878
}

0 commit comments

Comments
 (0)