Skip to content

Commit

Permalink
fix void command execution
Browse files Browse the repository at this point in the history
  • Loading branch information
ingvord committed May 23, 2020
1 parent 894959c commit 53152ce
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/main/java/org/tango/rest/v10/JaxRsTangoCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,7 @@ public CommandInOut<Object, Object> put(@QueryParam("async") boolean async,
});
return null;
} else {
if (value.output == null) {
command.execute(value.input);
} else {
value.output = command.executeExtract(value.input);
}
value.output = command.executeExtract(value.input);
return value;
}
}
Expand Down

0 comments on commit 53152ce

Please sign in to comment.