diff options
author | Fabio Ponciroli <ponch78@gmail.com> | 2022-02-03 09:49:13 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2022-02-22 23:21:28 +0100 |
commit | 00bb7cc9a5bb1627c3ef8f2e4a5886e79afba189 (patch) | |
tree | baac3935f418dc3db95cfb70b268ce5502bb7fd7 /org.eclipse.jgit.test | |
parent | 73831b34b848ca739f27fe7ba207eae5dca8bb54 (diff) | |
download | jgit-00bb7cc9a5bb1627c3ef8f2e4a5886e79afba189.tar.gz jgit-00bb7cc9a5bb1627c3ef8f2e4a5886e79afba189.zip |
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
Diffstat (limited to 'org.eclipse.jgit.test')
-rw-r--r-- | org.eclipse.jgit.test/tst/org/eclipse/jgit/internal/storage/file/FileReftableStackTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/internal/storage/file/FileReftableStackTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/internal/storage/file/FileReftableStackTest.java index 98e4b3e1b3..6c7992716c 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/internal/storage/file/FileReftableStackTest.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/internal/storage/file/FileReftableStackTest.java @@ -118,7 +118,7 @@ public class FileReftableStackTest { testCompaction(1024); } - @SuppressWarnings({ "resource", "unused" }) + @SuppressWarnings("resource") @Test public void missingReftable() throws Exception { // Can't delete in-use files on Windows. |