Skip to content

Commit 53152ce

Browse files
author
ingvord
committed
fix void command execution
1 parent 894959c commit 53152ce

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/main/java/org/tango/rest/v10/JaxRsTangoCommand.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,7 @@ public CommandInOut<Object, Object> put(@QueryParam("async") boolean async,
7979
});
8080
return null;
8181
} else {
82-
if (value.output == null) {
83-
command.execute(value.input);
84-
} else {
85-
value.output = command.executeExtract(value.input);
86-
}
82+
value.output = command.executeExtract(value.input);
8783
return value;
8884
}
8985
}

0 commit comments

Comments
 (0)