File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/main/java/org/scijava/script Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments