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>
This commit is contained in:
David Pursehouse 2017-12-18 10:19:53 +09:00
parent 40608e6e26
commit e895d21a52
2 changed files with 5 additions and 9 deletions

View File

@ -163,9 +163,7 @@ public void warn(String msg) {
* @param arg0 * @param arg0
* @param arg1 * @param arg1
*/ */
public void debug(@SuppressWarnings("unused") String msg, public void debug(String msg, Object arg0, Object arg1) {
@SuppressWarnings("unused") Object arg0,
@SuppressWarnings("unused") Object arg1) {
// Ignore (not relevant to test failures) // Ignore (not relevant to test failures)
} }
@ -181,7 +179,7 @@ public void debug(String msg, Throwable th) {
* @param msg * @param msg
* debug message * debug message
*/ */
public void debug(@SuppressWarnings("unused") String msg) { public void debug(String msg) {
// Ignore (not relevant to test failures) // Ignore (not relevant to test failures)
} }
@ -192,9 +190,7 @@ public void debug(@SuppressWarnings("unused") String msg) {
* @param arg0 * @param arg0
* @param arg1 * @param arg1
*/ */
public void info(@SuppressWarnings("unused") String msg, public void info(String msg, Object arg0, Object arg1) {
@SuppressWarnings("unused") Object arg0,
@SuppressWarnings("unused") Object arg1) {
// Ignore (not relevant to test failures) // Ignore (not relevant to test failures)
} }
@ -203,7 +199,7 @@ public void info(@SuppressWarnings("unused") String msg,
* *
* @param msg * @param msg
*/ */
public void info(@SuppressWarnings("unused") String msg) { public void info(String msg) {
// Ignore (not relevant to test failures) // Ignore (not relevant to test failures)
} }

View File

@ -327,7 +327,7 @@ protected int printList(Collection<String> list) throws IOException {
protected int printList(String status1, String status2, String status3, protected int printList(String status1, String status2, String status3,
Collection<String> list, Collection<String> set1, Collection<String> list, Collection<String> set1,
Collection<String> set2, Collection<String> set2,
@SuppressWarnings("unused") Collection<String> set3) Collection<String> set3)
throws IOException { throws IOException {
List<String> sortedList = new ArrayList<>(list); List<String> sortedList = new ArrayList<>(list);
java.util.Collections.sort(sortedList); java.util.Collections.sort(sortedList);