Skip to content

Commit

Permalink
chore: pmd
Browse files Browse the repository at this point in the history
  • Loading branch information
jcosentino11 committed Nov 14, 2023
1 parent 119bdcf commit e087c57
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Objects;
import java.util.Set;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.locks.ReentrantLock;
Expand Down Expand Up @@ -107,7 +108,7 @@ public void initialize() throws SQLException {

// eagerly create remaining statements
for (CachedStatement<?, ?> statement : allStatements) {
if (statement == createSpoolerTable) {
if (Objects.equals(statement, createSpoolerTable)) {
continue;
}
statement.replaceStatement(connection);
Expand Down

0 comments on commit e087c57

Please sign in to comment.