Skip to content

Commit e7b80c6

Browse files
ctruedendscho
authored andcommitted
DefaultScriptInterpreter: remove redundant javadoc
1 parent b7eb86a commit e7b80c6

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

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

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -78,24 +78,13 @@ public synchronized String walkHistory(final String currentCommand, boolean forw
7878
return forward ? history.next() : history.previous();
7979
}
8080

81-
/**
82-
* Evaluates a command.
83-
*
84-
* @param command the command to evaluate
85-
* @throws ScriptException
86-
*/
8781
@Override
8882
public void eval(String command) throws ScriptException {
8983
if (history != null) history.add(command);
9084
if (engine == null) throw new java.lang.IllegalArgumentException();
9185
engine.eval(command);
9286
}
9387

94-
/**
95-
* Returns the current script engine.
96-
*
97-
* @return
98-
*/
9988
@Override
10089
public ScriptEngine getEngine() {
10190
return engine;

0 commit comments

Comments
 (0)