Skip to content

Commit

Permalink
Chore: remove duplicated semicolon (#3716)
Browse files Browse the repository at this point in the history
* Chore: remove duplicated semicolon

* Chore: remove duplicated semicolon

* Chore: remove unnecessary semicolon
  • Loading branch information
dbmalkovsky committed Aug 29, 2023
1 parent 4a65b75 commit 2b94a80
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,14 @@ public void testGetCaseInstances() throws Exception {
url = CmmnRestUrls.createRelativeResourceUrl(CmmnRestUrls.URL_CASE_INSTANCE_COLLECTION) + "?startedBefore=" + getISODateString(futureCal.getTime());
assertResultsPresentInDataResponse(url, id);

url = CmmnRestUrls.createRelativeResourceUrl(CmmnRestUrls.URL_CASE_INSTANCE_COLLECTION) + "?startedBefore=" + getISODateString(historicCal.getTime());;
url = CmmnRestUrls.createRelativeResourceUrl(CmmnRestUrls.URL_CASE_INSTANCE_COLLECTION) + "?startedBefore=" + getISODateString(historicCal.getTime());
assertResultsPresentInDataResponse(url);

// Case instance started after
url = CmmnRestUrls.createRelativeResourceUrl(CmmnRestUrls.URL_CASE_INSTANCE_COLLECTION) + "?startedAfter=" + getISODateString(historicCal.getTime());;
url = CmmnRestUrls.createRelativeResourceUrl(CmmnRestUrls.URL_CASE_INSTANCE_COLLECTION) + "?startedAfter=" + getISODateString(historicCal.getTime());
assertResultsPresentInDataResponse(url, id);

url = CmmnRestUrls.createRelativeResourceUrl(CmmnRestUrls.URL_CASE_INSTANCE_COLLECTION) + "?startedAfter=" + getISODateString(futureCal.getTime());;
url = CmmnRestUrls.createRelativeResourceUrl(CmmnRestUrls.URL_CASE_INSTANCE_COLLECTION) + "?startedAfter=" + getISODateString(futureCal.getTime());
assertResultsPresentInDataResponse(url);

// Case instance state
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/
public abstract class AbstractVariableComparatorExpressionFunction extends AbstractFlowableVariableExpressionFunction {

protected enum OPERATOR { LT, LTE, GT, GTE, EQ };
protected enum OPERATOR { LT, LTE, GT, GTE, EQ }

public AbstractVariableComparatorExpressionFunction(List<String> functionNameOptions, String functionName) {
super(functionNameOptions, functionName);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public void execute(DelegateExecution execution) {
}

Map<String, Object> payload = IOParameterUtil.extractOutVariables(throwEvent.getOutParameters(), execution,
processEngineConfiguration.getExpressionManager());;
processEngineConfiguration.getExpressionManager());

for (SignalEventSubscriptionEntity signalEventSubscriptionEntity : subscriptionEntities) {
processEngineConfiguration.getEventDispatcher().dispatchEvent(FlowableEventBuilder.createSignalEvent(FlowableEngineEventType.ACTIVITY_SIGNALED, signalEventSubscriptionEntity.getActivityId(), eventSubscriptionName,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ void jmsOutboundChannelShouldResolveDestinationFromExpressionUsingCombinationFor

Object message = await("receive message")
.atMost(Duration.ofSeconds(10))
.until(() -> jmsTemplate.receiveAndConvert("test-combination.test-expression-customer"), Objects::nonNull);;
.until(() -> jmsTemplate.receiveAndConvert("test-combination.test-expression-customer"), Objects::nonNull);
assertThat(message).isNotNull();
assertThatJson(message)
.isEqualTo("{"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1279,7 +1279,6 @@ public HistoricTaskInstanceQuery caseVariableValueNotEquals(String variableName,
currentOrQueryObject.scopedVariableValueNotEquals(variableName, variableValue, ScopeTypes.CMMN);
} else {
this.scopedVariableValueNotEquals(variableName, variableValue, ScopeTypes.CMMN);
;
}
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1374,7 +1374,6 @@ public TaskQuery caseVariableValueNotEquals(String variableName, Object variable
currentOrQueryObject.scopedVariableValueNotEquals(variableName, variableValue, ScopeTypes.CMMN);
} else {
this.scopedVariableValueNotEquals(variableName, variableValue, ScopeTypes.CMMN);
;
}
return this;
}
Expand Down

0 comments on commit 2b94a80

Please sign in to comment.