Skip to content

Commit

Permalink
Fix checkstyle errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvest committed Apr 19, 2018
1 parent 348e5ae commit 09baba6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ private static class TopLevelGroup extends ThreadGroup
{
TopLevelGroup()
{
super ( "Neo4j-" + INSTANCE_COUNTER.incrementAndGet() );
super( "Neo4j-" + INSTANCE_COUNTER.incrementAndGet() );
}

public void setName( String name ) throws Exception
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ private long warmUpCluster() throws Exception
{
cluster.awaitLeader(); // Make sure we have a cluster leader. Simplifies debugging.
AtomicLong pagesInMemory = new AtomicLong();
cluster.coreTx( (db, tx) ->
cluster.coreTx( ( db, tx ) ->
{
createTestData( db );
tx.success();
} );
cluster.coreTx( (db, tx) -> pagesInMemory.set( waitForCacheProfile( db ) ) );
cluster.coreTx( ( db, tx ) -> pagesInMemory.set( waitForCacheProfile( db ) ) );
for ( CoreClusterMember member : cluster.coreMembers() )
{
waitForCacheProfile( member.database() );
Expand Down

0 comments on commit 09baba6

Please sign in to comment.