Skip to content

Commit b62d085

Browse files
Remove System.out.println statements
1 parent e1b4c22 commit b62d085

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

modules/flowable-engine-common/src/main/java/org/flowable/common/engine/impl/db/EngineSqlScriptBasedDbSchemaManager.java

+1-4
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,11 @@ protected void schemaCreateInLock() {
109109
}
110110

111111
protected void dbSchemaCreateEngine() {
112-
System.out.println("!!!!!!!!!!! schemaCreate " + getContext());
113112
executeMandatorySchemaResource("create", context);
114113
}
115114

116115
@Override
117116
public void schemaDrop() {
118-
System.out.println("!!!!!!!!!!! schemaDrop " + getContext());
119117
try {
120118
executeMandatorySchemaResource("drop", context);
121119

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

128126
@Override
129127
public String schemaUpdate() {
130-
System.out.println("!!!!!!!!!!! schemaUpdate " + getContext());
131-
PropertyEntity dbVersionProperty = null;
128+
PropertyEntity dbVersionProperty = null;
132129
String feedback = null;
133130
boolean isUpgradeNeeded = false;
134131
int matchingVersionIndex = -1;

modules/flowable-engine-configurator/src/test/java/org/flowable/engine/configurator/test/ProcessTest.java

-6
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
import org.flowable.engine.history.HistoricProcessInstance;
4343
import org.flowable.engine.impl.cfg.ProcessEngineConfigurationImpl;
4444
import org.flowable.engine.impl.test.HistoryTestHelper;
45-
import org.flowable.engine.runtime.Execution;
4645
import org.flowable.engine.runtime.ProcessInstance;
4746
import org.flowable.form.api.FormEngineConfigurationApi;
4847
import org.flowable.form.api.FormInfo;
@@ -382,11 +381,6 @@ public void testProcessWithCaseTaskAndMultipleVariableListeners() throws Excepti
382381

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

385-
List<Execution> executions = runtimeService.createExecutionQuery().processInstanceId(processInstance.getId()).list();
386-
for (Execution execution : executions) {
387-
System.out.println("execution " + execution.getId() + " " + execution.getActivityId());
388-
}
389-
390384
assertThat(runtimeService.createProcessInstanceQuery().processInstanceId(processInstance.getId()).count()).isZero();
391385

392386
} finally {

0 commit comments

Comments
 (0)