fixed eclipse project classpath, got rid of some unnecessary @overrides

pull/14/head
Tim Su 15 years ago
parent 14819318e3
commit 7182206271

@ -4,6 +4,5 @@
<classpathentry kind="src" path="gen"/> <classpathentry kind="src" path="gen"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/> <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry combineaccessrules="false" kind="src" path="/astrid"/> <classpathentry combineaccessrules="false" kind="src" path="/astrid"/>
<classpathentry kind="lib" path="libs/android-junit-report-1.0.3.jar"/>
<classpathentry kind="output" path="ecbuild"/> <classpathentry kind="output" path="ecbuild"/>
</classpath> </classpath>

@ -105,7 +105,6 @@ public class JUnitReportListener implements TestListener {
this.mFilterTraces = filterTraces; this.mFilterTraces = filterTraces;
} }
@Override
public void startTest(Test test) { public void startTest(Test test) {
try { try {
openIfRequired(test); openIfRequired(test);
@ -147,12 +146,10 @@ public class JUnitReportListener implements TestListener {
} }
} }
@Override
public void addError(Test test, Throwable error) { public void addError(Test test, Throwable error) {
addProblem(TAG_ERROR, error); addProblem(TAG_ERROR, error);
} }
@Override
public void addFailure(Test test, AssertionFailedError error) { public void addFailure(Test test, AssertionFailedError error) {
addProblem(TAG_FAILURE, error); addProblem(TAG_FAILURE, error);
} }
@ -181,7 +178,6 @@ public class JUnitReportListener implements TestListener {
} }
} }
@Override
public void endTest(Test test) { public void endTest(Test test) {
try { try {
if (test instanceof TestCase) { if (test instanceof TestCase) {

Loading…
Cancel
Save