comparison graal/com.oracle.max.base/src/com/sun/max/test/TestResult.java @ 4142:bc8527f3071c

Adjust code base to new level of warnings.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 18 Dec 2011 05:24:06 +0100
parents e233f5660da4
children
comparison
equal deleted inserted replaced
4141:04d21be7a24f 4142:bc8527f3071c
52 public String failureMessage(TestCase testCase) { 52 public String failureMessage(TestCase testCase) {
53 return testCase.file + " failed"; 53 return testCase.file + " failed";
54 } 54 }
55 } 55 }
56 56
57 /**
58 * @param tc
59 */
57 public String failureMessage(TestCase tc) { 60 public String failureMessage(TestCase tc) {
58 return ""; 61 return "";
59 } 62 }
60 63
61 public static class UnexpectedException extends Failure { 64 public static class UnexpectedException extends Failure {