Skip to content

Commit e08f418

Browse files
committed
spotless
1 parent f48267b commit e08f418

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

db-scheduler/src/test/java/com/github/kagkarlsson/scheduler/helper/ExecutionCompletedCondition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public void apply(StatsRegistry.ExecutionStatsEvent e) {}
4040
public void applyExecutionComplete(ExecutionComplete complete) {
4141
if (complete.getResult() == Result.OK) {
4242
LoggerFactory.getLogger(ExecutionCompletedCondition.class)
43-
.debug("Received event execution-completed, counting down");
43+
.debug("Received event execution-completed, counting down");
4444
completed.countDown();
4545
}
4646
}

db-scheduler/src/test/java/com/github/kagkarlsson/scheduler/helper/TestableRegistry.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ private void applyToConditions(ExecutionComplete complete) {
100100
waitConditions.forEach(c -> c.applyExecutionComplete(complete));
101101
}
102102

103-
104103
private void countEvent(Enum e) {
105104
String key = counterKey(e.getClass(), e.name());
106105
AtomicLong counter = counters.get(key);

0 commit comments

Comments
 (0)