You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by jc...@apache.org on 2020/03/06 01:03:40 UTC

[geode] branch feature/GEODE-7681 updated: spotlessApply

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


The following commit(s) were added to refs/heads/feature/GEODE-7681 by this push:
     new f1b053f  spotlessApply
f1b053f is described below

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

    spotlessApply
    
    Authored-by: Jianxia Chen <jc...@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);
     });
   }