Repository: cassandra Updated Branches: refs/heads/trunk 182051c45 -> 0d1173117
make Allocator a static inner class Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/0d117311 Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/0d117311 Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/0d117311 Branch: refs/heads/trunk Commit: 0d11731178ca409a36f4ff67f441a5190eea21fe Parents: 182051c Author: Dave Brosius <[email protected]> Authored: Sat Sep 6 14:29:38 2014 -0400 Committer: Dave Brosius <[email protected]> Committed: Sat Sep 6 14:29:38 2014 -0400 ---------------------------------------------------------------------- src/java/org/apache/cassandra/utils/memory/HeapPool.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/0d117311/src/java/org/apache/cassandra/utils/memory/HeapPool.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/utils/memory/HeapPool.java b/src/java/org/apache/cassandra/utils/memory/HeapPool.java index a04947c..3d3ca09 100644 --- a/src/java/org/apache/cassandra/utils/memory/HeapPool.java +++ b/src/java/org/apache/cassandra/utils/memory/HeapPool.java @@ -43,7 +43,7 @@ public class HeapPool extends MemtablePool return new Allocator(this); } - public class Allocator extends MemtableBufferAllocator + public static class Allocator extends MemtableBufferAllocator { Allocator(HeapPool pool) {
