* @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)
}
* @param msg
* debug message
*/
- public void debug(@SuppressWarnings("unused") String msg) {
+ public void debug(String msg) {
// Ignore (not relevant to test failures)
}
* @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)
}
*
* @param msg
*/
- public void info(@SuppressWarnings("unused") String msg) {
+ public void info(String msg) {
// Ignore (not relevant to test failures)
}
protected int printList(String status1, String status2, String status3,
Collection<String> list, Collection<String> set1,
Collection<String> set2,
- @SuppressWarnings("unused") Collection<String> set3)
+ Collection<String> set3)
throws IOException {
List<String> sortedList = new ArrayList<>(list);
java.util.Collections.sort(sortedList);