diff options
author | David Pursehouse <david.pursehouse@gmail.com> | 2017-12-18 10:19:53 +0900 |
---|---|---|
committer | David Pursehouse <david.pursehouse@gmail.com> | 2017-12-18 10:19:53 +0900 |
commit | e895d21a52c6d54da2151b72a56ed193ade5be7e (patch) | |
tree | 04086674dd2309a2cb707878220d08c73fb9be84 /org.eclipse.jgit.junit.http/src | |
parent | 40608e6e26ee7ffd9c75802a591baf058e79b04c (diff) | |
download | jgit-e895d21a52c6d54da2151b72a56ed193ade5be7e.tar.gz jgit-e895d21a52c6d54da2151b72a56ed193ade5be7e.zip |
Remove redundant @SuppressWarnings("unused")
These are now redundant since the parameters have javadoc.
Change-Id: I6bfde267e1712ee35871c30c8203c3b4dc5e136a
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
Diffstat (limited to 'org.eclipse.jgit.junit.http/src')
-rw-r--r-- | org.eclipse.jgit.junit.http/src/org/eclipse/jgit/junit/http/RecordingLogger.java | 12 |
1 files changed, 4 insertions, 8 deletions
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 33b5fc056a..fed063a8fa 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 class RecordingLogger implements Logger { * @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 class RecordingLogger implements Logger { * @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 class RecordingLogger implements Logger { * @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 class RecordingLogger implements Logger { * * @param msg */ - public void info(@SuppressWarnings("unused") String msg) { + public void info(String msg) { // Ignore (not relevant to test failures) } |