Skip to content

Commit

Permalink
1 missing occurence of responseClass attribute (caused by not pulling…
Browse files Browse the repository at this point in the history
… the latest changes)
  • Loading branch information
jkremser authored and lucasponce committed Mar 25, 2015
1 parent e0a6e1a commit 48862db
Showing 1 changed file with 5 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -681,14 +681,11 @@ public void updateCondition(@Suspended
@ApiOperation(value = "Delete an existing condition for a specific trigger",
responseContainer = "Collection<Condition>",
response = Condition.class)
public void deleteCondition(@Suspended
final AsyncResponse response,
@ApiParam(value = "Trigger definition id to be retrieved",
required = true)
@PathParam("triggerId")
final String triggerId,
@PathParam("conditionId")
final String conditionId) {
public void deleteCondition(@Suspended final AsyncResponse response,
@ApiParam(value = "Trigger definition id to be retrieved",
required = true)
@PathParam("triggerId") final String triggerId,
@PathParam("conditionId") final String conditionId) {
try {
Condition test = definitions.getCondition(conditionId);
if (test == null) {
Expand Down

0 comments on commit 48862db

Please sign in to comment.