Skip to content

Commit

Permalink
Remove System.out.println statements
Browse files Browse the repository at this point in the history
  • Loading branch information
tijsrademakers committed Aug 20, 2024
1 parent e1b4c22 commit b62d085
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,11 @@ protected void schemaCreateInLock() {
}

protected void dbSchemaCreateEngine() {
System.out.println("!!!!!!!!!!! schemaCreate " + getContext());
executeMandatorySchemaResource("create", context);
}

@Override
public void schemaDrop() {
System.out.println("!!!!!!!!!!! schemaDrop " + getContext());
try {
executeMandatorySchemaResource("drop", context);

Expand All @@ -127,8 +125,7 @@ public void schemaDrop() {

@Override
public String schemaUpdate() {
System.out.println("!!!!!!!!!!! schemaUpdate " + getContext());
PropertyEntity dbVersionProperty = null;
PropertyEntity dbVersionProperty = null;
String feedback = null;
boolean isUpgradeNeeded = false;
int matchingVersionIndex = -1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
import org.flowable.engine.history.HistoricProcessInstance;
import org.flowable.engine.impl.cfg.ProcessEngineConfigurationImpl;
import org.flowable.engine.impl.test.HistoryTestHelper;
import org.flowable.engine.runtime.Execution;
import org.flowable.engine.runtime.ProcessInstance;
import org.flowable.form.api.FormEngineConfigurationApi;
import org.flowable.form.api.FormInfo;
Expand Down Expand Up @@ -382,11 +381,6 @@ public void testProcessWithCaseTaskAndMultipleVariableListeners() throws Excepti

runtimeService.setVariable(processInstance.getId(), "var1", "test");

List<Execution> executions = runtimeService.createExecutionQuery().processInstanceId(processInstance.getId()).list();
for (Execution execution : executions) {
System.out.println("execution " + execution.getId() + " " + execution.getActivityId());
}

assertThat(runtimeService.createProcessInstanceQuery().processInstanceId(processInstance.getId()).count()).isZero();

} finally {
Expand Down

0 comments on commit b62d085

Please sign in to comment.