ringles commented on a change in pull request #5978:
URL: https://github.com/apache/geode/pull/5978#discussion_r569481213



##########
File path: 
geode-core/src/distributedTest/java/org/apache/geode/internal/cache/TestDelta.java
##########
@@ -33,12 +33,28 @@
   public int deserializations;
   public int deltas;
   public int clones;
+  public boolean forceRecalculateSize;
 
   public TestDelta() {}
 
   public TestDelta(boolean hasDelta, String info) {
     this.hasDelta = hasDelta;
     this.info = info;
+    this.forceRecalculateSize = false;
+  }
+
+  public TestDelta(boolean hasDelta, String info, boolean 
forceRecalculateSize) {
+    this.hasDelta = hasDelta;
+    this.info = info;
+    this.forceRecalculateSize = forceRecalculateSize;
+  }
+
+  @Override
+  public String toString() {
+    return "TestDelta{" +
+        "info='" + info + '\'' +
+        "forceRecalculateSize='" + forceRecalculateSize + '\'' +
+        '}';

Review comment:
       IntelliJ automatically reformats it that way when you type it in. It 
takes some awkward juggling to avoid this "help".




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to