You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by sl...@apache.org on 2013/12/19 15:47:00 UTC

git commit: Ninja fix typo

Updated Branches:
  refs/heads/trunk 268f3cb19 -> 4b72dae2d


Ninja fix typo


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/4b72dae2
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/4b72dae2
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/4b72dae2

Branch: refs/heads/trunk
Commit: 4b72dae2da715ef84df7f25197ac9a70e14e876d
Parents: 268f3cb
Author: Sylvain Lebresne <sy...@datastax.com>
Authored: Thu Dec 19 15:45:29 2013 +0100
Committer: Sylvain Lebresne <sy...@datastax.com>
Committed: Thu Dec 19 15:45:29 2013 +0100

----------------------------------------------------------------------
 .../apache/cassandra/db/composites/CompoundSparseCellNameType.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/4b72dae2/src/java/org/apache/cassandra/db/composites/CompoundSparseCellNameType.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/db/composites/CompoundSparseCellNameType.java b/src/java/org/apache/cassandra/db/composites/CompoundSparseCellNameType.java
index 2cc8516..a301665 100644
--- a/src/java/org/apache/cassandra/db/composites/CompoundSparseCellNameType.java
+++ b/src/java/org/apache/cassandra/db/composites/CompoundSparseCellNameType.java
@@ -231,7 +231,7 @@ public class CompoundSparseCellNameType extends AbstractCompoundCellNameType
                 return super.copyAndMakeWith(components, size, eoc);
 
             ByteBuffer[] clusteringColumns = Arrays.copyOfRange(components, 0, clusteringSize);
-            return new CompoundSparseCellName.WithCollection(clusteringColumns, idFor(components[clusteringSize]), components[fullSize + 1]);
+            return new CompoundSparseCellName.WithCollection(clusteringColumns, idFor(components[clusteringSize]), components[clusteringSize + 1]);
         }
     }
 }