Updated Branches:
  refs/heads/trunk 97a1c789e -> ced78f3c4

fix string format parameter type for RowCacheKey.toString


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

Branch: refs/heads/trunk
Commit: ced78f3c405419de02559556d6a99238fb711b1c
Parents: 97a1c78
Author: Dave Brosius <dbros...@apache.org>
Authored: Wed Jun 20 20:59:49 2012 -0400
Committer: Dave Brosius <dbros...@apache.org>
Committed: Wed Jun 20 20:59:49 2012 -0400

----------------------------------------------------------------------
 .../org/apache/cassandra/cache/RowCacheKey.java    |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/ced78f3c/src/java/org/apache/cassandra/cache/RowCacheKey.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/cache/RowCacheKey.java 
b/src/java/org/apache/cassandra/cache/RowCacheKey.java
index 10a80b6..2477a06 100644
--- a/src/java/org/apache/cassandra/cache/RowCacheKey.java
+++ b/src/java/org/apache/cassandra/cache/RowCacheKey.java
@@ -76,6 +76,6 @@ public class RowCacheKey implements CacheKey, 
Comparable<RowCacheKey>
     @Override
     public String toString()
     {
-        return String.format("RowCacheKey(cfId:%d, key:%s)", cfId, key);
+        return String.format("RowCacheKey(cfId:%d, key:%s)", cfId, 
Arrays.toString(key));
     }
 }

Reply via email to