diff --git a/org.eclipse.jgit.junit.http/src/org/eclipse/jgit/junit/http/RecordingLogger.java b/org.eclipse.jgit.junit.http/src/org/eclipse/jgit/junit/http/RecordingLogger.java index 33b5fc056..fed063a8f 100644 --- a/org.eclipse.jgit.junit.http/src/org/eclipse/jgit/junit/http/RecordingLogger.java +++ b/org.eclipse.jgit.junit.http/src/org/eclipse/jgit/junit/http/RecordingLogger.java @@ -163,9 +163,7 @@ public void warn(String msg) { * @param arg0 * @param arg1 */ - public void debug(@SuppressWarnings("unused") String msg, - @SuppressWarnings("unused") Object arg0, - @SuppressWarnings("unused") Object arg1) { + public void debug(String msg, Object arg0, Object arg1) { // Ignore (not relevant to test failures) } @@ -181,7 +179,7 @@ public void debug(String msg, Throwable th) { * @param msg * debug message */ - public void debug(@SuppressWarnings("unused") String msg) { + public void debug(String msg) { // Ignore (not relevant to test failures) } @@ -192,9 +190,7 @@ public void debug(@SuppressWarnings("unused") String msg) { * @param arg0 * @param arg1 */ - public void info(@SuppressWarnings("unused") String msg, - @SuppressWarnings("unused") Object arg0, - @SuppressWarnings("unused") Object arg1) { + public void info(String msg, Object arg0, Object arg1) { // Ignore (not relevant to test failures) } @@ -203,7 +199,7 @@ public void info(@SuppressWarnings("unused") String msg, * * @param msg */ - public void info(@SuppressWarnings("unused") String msg) { + public void info(String msg) { // Ignore (not relevant to test failures) } diff --git a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Status.java b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Status.java index 4238f207e..fb2fd7e23 100644 --- a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Status.java +++ b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Status.java @@ -327,7 +327,7 @@ protected int printList(Collection list) throws IOException { protected int printList(String status1, String status2, String status3, Collection list, Collection set1, Collection set2, - @SuppressWarnings("unused") Collection set3) + Collection set3) throws IOException { List sortedList = new ArrayList<>(list); java.util.Collections.sort(sortedList);