Remove unnecessary warning suppression (#12350)

This commit is contained in:
Lauri Tulmin 2024-09-28 14:28:11 +03:00 committed by GitHub
parent bcbb20cb61
commit b4bceba678
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 4 deletions

View File

@ -51,13 +51,10 @@ public abstract class AbstractCassandraTest {
private static final Logger logger = LoggerFactory.getLogger(AbstractCassandraTest.class); private static final Logger logger = LoggerFactory.getLogger(AbstractCassandraTest.class);
@SuppressWarnings("rawtypes") private static GenericContainer<?> cassandra;
private static GenericContainer cassandra;
protected static String cassandraHost; protected static String cassandraHost;
protected static String cassandraIp; protected static String cassandraIp;
protected static int cassandraPort; protected static int cassandraPort;
protected abstract InstrumentationExtension testing(); protected abstract InstrumentationExtension testing();