This is an automated email from the ASF dual-hosted git repository.

jchen21 pushed a commit to branch feature/GEODE-7681
in repository https://gitbox.apache.org/repos/asf/geode.git

commit ba49218bbb0beeb59d90e5332cacbd4b8314f595
Author: Jianxia Chen <jche...@apache.org>
AuthorDate: Thu Mar 5 17:02:47 2020 -0800

    spotlessApply
    
    Authored-by: Jianxia Chen <jche...@apache.org>
---
 .../internal/cache/PartitionedRegionClearPerformanceDUnitTest.java  | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git 
a/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/PartitionedRegionClearPerformanceDUnitTest.java
 
b/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/PartitionedRegionClearPerformanceDUnitTest.java
index 5e33a38..72718a7 100644
--- 
a/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/PartitionedRegionClearPerformanceDUnitTest.java
+++ 
b/geode-core/src/distributedTest/java/org/apache/geode/internal/cache/PartitionedRegionClearPerformanceDUnitTest.java
@@ -51,12 +51,14 @@ public class PartitionedRegionClearPerformanceDUnitTest 
implements Serializable
     server3 = clusterStartupRule.startServerVM(3, locator.getPort());
   }
 
-  private void createRegionOnServer(MemberVM server, RegionShortcut type, int 
numBuckets, int redundancy) {
+  private void createRegionOnServer(MemberVM server, RegionShortcut type, int 
numBuckets,
+      int redundancy) {
     server.invoke(() -> {
       Cache cache = ClusterStartupRule.getCache();
       cache.createRegionFactory(type)
           .setPartitionAttributes(
-              new 
PartitionAttributesFactory().setTotalNumBuckets(numBuckets).setRedundantCopies(redundancy).create())
+              new PartitionAttributesFactory().setTotalNumBuckets(numBuckets)
+                  .setRedundantCopies(redundancy).create())
           .create(regionName);
     });
   }

Reply via email to