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/16 21:03:25 UTC

[geode] 02/08: gradlew 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

commit 583f6cadffea6803396a8fb63770fa63ef6e0748
Author: Jianxia Chen <jc...@apache.org>
AuthorDate: Thu Feb 27 16:04:37 2020 -0800

    gradlew 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 b7caa8b..a3eb15d 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
@@ -165,7 +165,8 @@ public class PartitionedRegionClearPerformanceDUnitTest implements Serializable
       Cache cache = ClusterStartupRule.getCache();
       cache.createRegionFactory(RegionShortcut.PARTITION_REDUNDANT_PERSISTENT)
           .setPartitionAttributes(
-              new PartitionAttributesFactory().setRedundantCopies(1).create()).create(regionName);
+              new PartitionAttributesFactory().setRedundantCopies(1).create())
+          .create(regionName);
 
       int numEntries = 100;
       Map<String, String> entries = new HashMap<>();
@@ -194,7 +195,8 @@ public class PartitionedRegionClearPerformanceDUnitTest implements Serializable
       Cache cache = ClusterStartupRule.getCache();
       cache.createRegionFactory(RegionShortcut.PARTITION_REDUNDANT_PERSISTENT)
           .setPartitionAttributes(
-              new PartitionAttributesFactory().setRedundantCopies(2).create()).create(regionName);
+              new PartitionAttributesFactory().setRedundantCopies(2).create())
+          .create(regionName);
 
       int numEntries = 100;
       Map<String, String> entries = new HashMap<>();