Skip to content

Commit c467768

Browse files
committed
Clean up.
1 parent ea86699 commit c467768

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

edu.cuny.hunter.streamrefactoring.core/src/edu/cuny/hunter/streamrefactoring/core/analysis/StreamStateMachine.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,12 @@ else if (set2.isEmpty())
429429
return ret;
430430
}
431431

432+
private static void outputTypeStateStatistics(AggregateSolverResult result) {
433+
LOGGER.info("Total instances: " + result.totalInstancesNum());
434+
LOGGER.info("Processed instances: " + result.processedInstancesNum());
435+
LOGGER.info("Skipped instances: " + result.skippedInstances());
436+
}
437+
432438
private static IDFAState selectState(IDFAState state1, IDFAState state2) {
433439
if (state1.getName().equals(BOTTOM_STATE_NAME))
434440
return state2;
@@ -1251,10 +1257,4 @@ public Map<TypestateRule, Statistics> start(Set<Stream> streamSet, EclipseProjec
12511257
}
12521258
return ret;
12531259
}
1254-
1255-
private static void outputTypeStateStatistics(AggregateSolverResult result) {
1256-
LOGGER.info("Total instances: " + result.totalInstancesNum());
1257-
LOGGER.info("Processed instances: " + result.processedInstancesNum());
1258-
LOGGER.info("Skipped instances: " + result.skippedInstances());
1259-
}
12601260
}

0 commit comments

Comments
 (0)