Skip to content

Commit 3c537f8

Browse files
Fixing apparent encoding issue
Was causing grief with Git and Eclipse. Odd.
1 parent b521d18 commit 3c537f8

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

rxjava-core/src/perf/java/rx/subscriptions/CompositeSubscriptionAddRemovePerf.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
package rx.subscriptions;
32

43
import rx.perf.AbstractPerformanceTester;
@@ -18,24 +17,25 @@ public void call() {
1817
e.printStackTrace();
1918
}
2019
}
20+
2121
/**
2222
* Test simple add + remove on a composite.
2323
*
2424
* With old Composite add/remove:
2525
*
26-
* Run: 10 - 14 985 141 ops/sec
27-
* Run: 11 - 15 257 104 ops/sec
28-
* Run: 12 - 14 797 996 ops/sec
29-
* Run: 13 - 14 438 643 ops/sec
30-
* Run: 14 - 14 985 864 ops/sec
26+
* Run: 10 - 14,985,141 ops/sec
27+
* Run: 11 - 15,257,104 ops/sec
28+
* Run: 12 - 14,797,996 ops/sec
29+
* Run: 13 - 14,438,643 ops/sec
30+
* Run: 14 - 14,985,864 ops/sec
3131
*
3232
* With optimized Composite add/remove:
3333
*
34-
* Run: 10 - 19 802 782 ops/sec
35-
* Run: 11 - 18 896 021 ops/sec
36-
* Run: 12 - 18 829 296 ops/sec
37-
* Run: 13 - 19 729 876 ops/sec
38-
* Run: 14 - 19 830 678 ops/sec
34+
* Run: 10 - 19,802,782 ops/sec
35+
* Run: 11 - 18,896,021 ops/sec
36+
* Run: 12 - 18,829,296 ops/sec
37+
* Run: 13 - 19,729,876 ops/sec
38+
* Run: 14 - 19,830,678 ops/sec
3939
*
4040
* about 32% increase
4141
*/

0 commit comments

Comments
 (0)