File tree Expand file tree Collapse file tree 7 files changed +13
-13
lines changed
understandingcollections/jmh Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ subprojects {
233233
234234project(' :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
Original file line number Diff line number Diff line change 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 ;
77import org .openjdk .jmh .annotations .*;
88import org .openjdk .jmh .infra .Blackhole ;
99import java .util .*;
Original file line number Diff line number Diff line change 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 ;
77import org .openjdk .jmh .annotations .*;
88import org .openjdk .jmh .infra .Blackhole ;
99import java .util .*;
Original file line number Diff line number Diff line change 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 ;
77import org .openjdk .jmh .annotations .*;
88import org .openjdk .jmh .infra .Blackhole ;
99import java .util .*;
Original file line number Diff line number Diff line change 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 ;
77import org .openjdk .jmh .annotations .*;
88import org .openjdk .jmh .infra .Blackhole ;
99import java .util .*;
Original file line number Diff line number Diff line change 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 ;
66import java .util .*;
77import org .openjdk .jmh .annotations .*;
88
Original file line number Diff line number Diff line change 99 <root level =" TRACE" >
1010 <appender-ref ref =" STDOUT" />
1111 </root >
12- </configuration >
12+ </configuration >
You can’t perform that action at this time.
0 commit comments