Skip to content

Commit 0dbbb64

Browse files
author
Bruce Eckel
committed
Changed jmhtests to jmh
1 parent e7bf71e commit 0dbbb64

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ subprojects {
233233

234234
project(':verifying') {
235235
jmh {
236-
include = 'verifying.jmhtests.*'
236+
include = 'verifying.jmh.*'
237237
}
238238
}
239239

@@ -243,7 +243,7 @@ project(':understandingcollections') {
243243
compile project(':collections')
244244
}
245245
jmh {
246-
include = 'understandingcollections.jmhtests.*'
246+
include = 'understandingcollections.jmh.*'
247247
}
248248
}
249249

understandingcollections/jmhtests/Lists.java renamed to understandingcollections/jmh/Lists.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
// understandingcollections/jmhtests/Lists.java
1+
// understandingcollections/jmh/Lists.java
22
// (c)2016 MindView LLC: see Copyright.txt
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
55
// Demonstrates performance differences in Lists
6-
package understandingcollections.jmhtests;
6+
package understandingcollections.jmh;
77
import org.openjdk.jmh.annotations.*;
88
import org.openjdk.jmh.infra.Blackhole;
99
import java.util.*;

understandingcollections/jmhtests/Maps.java renamed to understandingcollections/jmh/Maps.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
// understandingcollections/jmhtests/Maps.java
1+
// understandingcollections/jmh/Maps.java
22
// (c)2016 MindView LLC: see Copyright.txt
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
55
// Performance differences between Maps
6-
package understandingcollections.jmhtests;
6+
package understandingcollections.jmh;
77
import org.openjdk.jmh.annotations.*;
88
import org.openjdk.jmh.infra.Blackhole;
99
import java.util.*;

understandingcollections/jmhtests/Queues.java renamed to understandingcollections/jmh/Queues.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
// understandingcollections/jmhtests/Queues.java
1+
// understandingcollections/jmh/Queues.java
22
// (c)2016 MindView LLC: see Copyright.txt
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
55
// Demonstrates performance differences in Queues
6-
package understandingcollections.jmhtests;
6+
package understandingcollections.jmh;
77
import org.openjdk.jmh.annotations.*;
88
import org.openjdk.jmh.infra.Blackhole;
99
import java.util.*;

understandingcollections/jmhtests/Sets.java renamed to understandingcollections/jmh/Sets.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
// understandingcollections/jmhtests/Sets.java
1+
// understandingcollections/jmh/Sets.java
22
// (c)2016 MindView LLC: see Copyright.txt
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
55
// Demonstrates performance differences in Sets
6-
package understandingcollections.jmhtests;
6+
package understandingcollections.jmh;
77
import org.openjdk.jmh.annotations.*;
88
import org.openjdk.jmh.infra.Blackhole;
99
import java.util.*;

verifying/jmhtests/ParallelSetAll.java renamed to verifying/jmh/ParallelSetAll.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
// verifying/jmhtests/ParallelSetAll.java
1+
// verifying/jmh/ParallelSetAll.java
22
// (c)2016 MindView LLC: see Copyright.txt
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
5-
package verifying.jmhtests;
5+
package verifying.jmh;
66
import java.util.*;
77
import org.openjdk.jmh.annotations.*;
88

verifying/logback.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
<root level="TRACE">
1010
<appender-ref ref="STDOUT" />
1111
</root>
12-
</configuration>
12+
</configuration>

0 commit comments

Comments
 (0)