Skip to content

Commit 6a65cd9

Browse files
committed
Remove unrelated changes
1 parent 3997816 commit 6a65cd9

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

Diff for: build.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
version="false"
145145
use="false"
146146
windowtitle="JUnit API"
147-
stylesheetfile="src/main/javadoc/stylesheet.css"
147+
stylesheetfile="stylesheet.css"
148148
>
149149
<excludepackage name="junit.*" />
150150
<excludepackage name="org.junit.internal.*" />
@@ -207,14 +207,12 @@
207207
<run-local-tests />
208208
</target>
209209

210-
<target name="test-dist" depends="populate-dist">
210+
<target name="dist" depends="populate-dist">
211211
<run-dist-tests>
212212
<jvmarg value="-Dignore.this=ignored"/>
213213
</run-dist-tests>
214214
</target>
215215

216-
<target name="dist" depends="test-dist" />
217-
218216
<target name="profile" depends="populate-dist">
219217
<run-dist-tests>
220218
<jvmarg value="-agentlib:hprof=cpu=samples"/>

Diff for: src/main/java/org/junit/experimental/runners/Enclosed.java

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
* }
2424
* </pre>
2525
*
26+
* @see org.junit.tests.manipulation.SortableTest
2627
*/
2728
public class Enclosed extends Suite {
2829
/**

Diff for: src/main/java/org/junit/runner/Result.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
package org.junit.runner;
22

3+
import org.junit.runner.notification.Failure;
4+
import org.junit.runner.notification.RunListener;
5+
36
import java.io.Serializable;
47
import java.util.List;
58
import java.util.concurrent.CopyOnWriteArrayList;
69
import java.util.concurrent.atomic.AtomicInteger;
710
import java.util.concurrent.atomic.AtomicLong;
811

9-
import org.junit.runner.notification.Failure;
10-
import org.junit.runner.notification.RunListener;
11-
1212
/**
1313
* A <code>Result</code> collects and summarizes information from running multiple tests.
1414
* All tests are counted -- additional information is collected from tests that fail.

0 commit comments

Comments
 (0)