Skip to content

Commit

Permalink
Remove unused Slf4j from test; remove unused imports (#322)
Browse files Browse the repository at this point in the history
* Remove unused Slf4j annotation from AbstractJdbcApplicationErrorDaoTest
* Remove unused imports from AbstractJdbcApplicationErrorDaoTest and ApplicationErrorJdbc
  • Loading branch information
sleberknight authored Nov 20, 2023
1 parent 7f52359 commit e899f57
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.RandomStringUtils;
import org.checkerframework.checker.nullness.qual.Nullable;
import org.h2.jdbcx.JdbcDataSource;
import org.kiwiproject.dropwizard.error.model.ApplicationError;
import org.kiwiproject.dropwizard.error.model.DataStoreType;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import static org.kiwiproject.dropwizard.error.dao.ApplicationErrorJdbc.nextOrThrow;
import static org.kiwiproject.jdbc.KiwiJdbc.timestampFromZonedDateTime;

import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.extension.ExtendWith;
Expand All @@ -30,7 +29,6 @@
*/
@SuppressWarnings({ "SqlDialectInspection", "SqlNoDataSourceInspection" })
@ExtendWith(ApplicationErrorExtension.class)
@Slf4j
public abstract class AbstractJdbcApplicationErrorDaoTest extends AbstractApplicationErrorDaoTest<JdbcApplicationErrorDao> {

protected abstract SimpleSingleConnectionDataSource getDataSource();
Expand Down

0 comments on commit e899f57

Please sign in to comment.