1
0
mirror of synced 2026-02-01 04:01:50 -05:00

Apply Best Practices PMD rules (#14753)

* Apply Unused* Best Practices PMD rules
This commit is contained in:
Anne
2022-07-15 15:01:04 -07:00
committed by GitHub
parent d035b0341d
commit e698710118
43 changed files with 24 additions and 189 deletions

View File

@@ -19,12 +19,9 @@ import java.util.Objects;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
class OnDiskQueueTest {
private static final Logger LOGGER = LoggerFactory.getLogger(OnDiskQueueTest.class);
private static final Path TEST_ROOT = Path.of("/tmp/airbyte_tests");
private CloseableQueue<byte[]> queue;
private Path queueRoot;