Skip to content

Commit

Permalink
keep correcting javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosuc3m committed May 8, 2024
1 parent e84d77a commit 18aef0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/io/bioimage/modelrunner/runmode/RunMode.java
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ public static RunMode createRunMode(OpInterface op) {
* @return a Map where the keys are the name of the Python variables in the Python scope
* and the values are the actual variable values retrieved from the Python process as the
* outputs from the Python OP
* @throws IOException
* @throws InterruptedException
* @throws IOException if there is any error running the Python from the python environment
* @throws InterruptedException if the Python process is interrupted abruptly
*/
public Map<String, Object> runOP() throws IOException, InterruptedException {
env = new Environment() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ public interface OpInterface {
* Get a Map contianing the inputs defined for the OP
* @return an ordered map with the inputs to the OP, where the key
* is the variable name and the object is the variable
* @throws Exception if there is any error handling the inputs to the Python OP
*/
public LinkedHashMap<String, Object> getOpInputs() ;
/**
Expand Down

0 comments on commit 18aef0f

Please sign in to comment.