Remove SuppressWarnings since currently ignored

The following warning was raised by Eclipse:
"At least one of the problems in category
'unused' is not analysed due to a compiler option being ignored"

The org.eclipse.jdt.core.compiler.problem.unusedTypeParameter compiler
option is set to ignore, hence the warning suppression is redundant.

Change-Id: I5fd6efc9968be133c71e95c53803c44310d75e85
This commit is contained in:
Fabio Ponciroli 2022-02-03 09:49:13 +01:00 committed by Matthias Sohn
parent 73831b34b8
commit 00bb7cc9a5
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ public void testCompaction1024() throws Exception {
testCompaction(1024);
}
@SuppressWarnings({ "resource", "unused" })
@SuppressWarnings("resource")
@Test
public void missingReftable() throws Exception {
// Can't delete in-use files on Windows.