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

klund pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 1de96e4d2cbfab3d2bbc26f1d616292eb0a45dac
Author: Kirk Lund <[email protected]>
AuthorDate: Fri Jun 22 11:05:46 2018 -0700

    GEODE-5390: Move inner classes to end of DiskInitFile
---
 .../apache/geode/internal/cache/DiskInitFile.java  | 26 +++++++++++-----------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git 
a/geode-core/src/main/java/org/apache/geode/internal/cache/DiskInitFile.java 
b/geode-core/src/main/java/org/apache/geode/internal/cache/DiskInitFile.java
index a8b5313..8da0b6c 100644
--- a/geode-core/src/main/java/org/apache/geode/internal/cache/DiskInitFile.java
+++ b/geode-core/src/main/java/org/apache/geode/internal/cache/DiskInitFile.java
@@ -2397,19 +2397,6 @@ public class DiskInitFile implements 
DiskInitFileInterpreter {
     }
   }
 
-  /**
-   * Additional flags for a disk region that are persisted in its meta-data.
-   *
-   * @since GemFire 7.0
-   */
-  public enum DiskRegionFlag {
-    /**
-     * True if this disk region has entries with versioning enabled. Depending 
on this flag, the
-     * appropriate RegionEntryFactory gets instantiated.
-     */
-    IS_WITH_VERSIONING
-  }
-
   Collection<DiskRegionView> getKnown() {
     lock(false);
     try {
@@ -2822,4 +2809,17 @@ public class DiskInitFile implements 
DiskInitFileInterpreter {
       unlock(true);
     }
   }
+
+  /**
+   * Additional flags for a disk region that are persisted in its meta-data.
+   *
+   * @since GemFire 7.0
+   */
+  public enum DiskRegionFlag {
+    /**
+     * True if this disk region has entries with versioning enabled. Depending 
on this flag, the
+     * appropriate RegionEntryFactory gets instantiated.
+     */
+    IS_WITH_VERSIONING
+  }
 }

Reply via email to