You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ds...@apache.org on 2016/03/08 01:25:16 UTC

[09/11] incubator-geode git commit: fixed typos

fixed typos


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/e1d83af8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/e1d83af8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/e1d83af8

Branch: refs/heads/feature/GEODE-982
Commit: e1d83af85561e25d0f3ed0a5a92d2d4ed238fcc5
Parents: 05a70cd
Author: Darrel Schneider <ds...@pivotal.io>
Authored: Mon Mar 7 15:50:44 2016 -0800
Committer: Darrel Schneider <ds...@pivotal.io>
Committed: Mon Mar 7 15:50:44 2016 -0800

----------------------------------------------------------------------
 .../java/com/gemstone/gemfire/internal/cache/DiskEntry.java     | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/e1d83af8/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/DiskEntry.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/DiskEntry.java b/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/DiskEntry.java
index cf71a44..26e49c9 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/DiskEntry.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/internal/cache/DiskEntry.java
@@ -753,11 +753,10 @@ public interface DiskEntry extends RegionEntry {
 
     /**
      * Returns true if the given object is off-heap
-     * and it is worth wrapping a reference to to it
+     * and it is worth wrapping a reference to it
      * instead of copying its data to the heap.
      * Currently all StoredObject's with a refCount are
-     * wrapped but it make make sense to also only wrap
-     * them if they are over a certain size.
+     * wrapped.
      */
     public static boolean wrapOffHeapReference(Object o) {
       if (o instanceof StoredObject) {