Repository: geode Updated Branches: refs/heads/feature/GEODE-2632-6-1 474dbe04f -> 1025b009b
Fixup Project: http://git-wip-us.apache.org/repos/asf/geode/repo Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/1025b009 Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/1025b009 Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/1025b009 Branch: refs/heads/feature/GEODE-2632-6-1 Commit: 1025b009beed7efd0ac80571bf29038c977d2ab1 Parents: 474dbe0 Author: Kirk Lund <[email protected]> Authored: Tue Apr 25 10:03:13 2017 -0700 Committer: Kirk Lund <[email protected]> Committed: Tue Apr 25 10:03:13 2017 -0700 ---------------------------------------------------------------------- .../org/apache/geode/internal/cache/GemFireCacheImpl.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/geode/blob/1025b009/geode-core/src/main/java/org/apache/geode/internal/cache/GemFireCacheImpl.java ---------------------------------------------------------------------- diff --git a/geode-core/src/main/java/org/apache/geode/internal/cache/GemFireCacheImpl.java b/geode-core/src/main/java/org/apache/geode/internal/cache/GemFireCacheImpl.java index 0bb31db..29e9f95 100755 --- a/geode-core/src/main/java/org/apache/geode/internal/cache/GemFireCacheImpl.java +++ b/geode-core/src/main/java/org/apache/geode/internal/cache/GemFireCacheImpl.java @@ -1080,7 +1080,7 @@ public class GemFireCacheImpl * @see #hasPool() */ @Override - public final boolean isClient() { + public boolean isClient() { return this.isClient; } @@ -2026,7 +2026,7 @@ public class GemFireCacheImpl } } - public final HeapEvictor getHeapEvictor() { + public HeapEvictor getHeapEvictor() { synchronized (this.heapEvictorLock) { stopper.checkCancelInProgress(null); if (this.heapEvictor == null) { @@ -2036,7 +2036,7 @@ public class GemFireCacheImpl } } - public final OffHeapEvictor getOffHeapEvictor() { + public OffHeapEvictor getOffHeapEvictor() { synchronized (this.offHeapEvictorLock) { this.stopper.checkCancelInProgress(null); if (this.offHeapEvictor == null) { @@ -3151,7 +3151,7 @@ public class GemFireCacheImpl * TODO: any changes to this method breaks ParallelQueueRemovalMessageJUnitTest */ @Override - public final Region getRegion(String path) { + public Region getRegion(String path) { return getRegion(path, false); } @@ -5133,7 +5133,7 @@ public class GemFireCacheImpl } @Override - public final MemoryAllocator getOffHeapStore() { + public MemoryAllocator getOffHeapStore() { return this.getSystem().getOffHeapStore(); }
