You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by jb...@apache.org on 2013/08/08 18:34:08 UTC

[15/16] git commit: comment

comment


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

Branch: refs/heads/trunk
Commit: c5261312459791ba6356b73cd61abf778879ed0e
Parents: f2d0433
Author: Jonathan Ellis <jb...@apache.org>
Authored: Thu Aug 8 11:18:41 2013 -0500
Committer: Jonathan Ellis <jb...@apache.org>
Committed: Thu Aug 8 11:18:41 2013 -0500

----------------------------------------------------------------------
 src/java/org/apache/cassandra/utils/BiMultiValMap.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/c5261312/src/java/org/apache/cassandra/utils/BiMultiValMap.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/utils/BiMultiValMap.java b/src/java/org/apache/cassandra/utils/BiMultiValMap.java
index 3712d25..d827d3f 100644
--- a/src/java/org/apache/cassandra/utils/BiMultiValMap.java
+++ b/src/java/org/apache/cassandra/utils/BiMultiValMap.java
@@ -29,7 +29,7 @@ import com.google.common.collect.Multimaps;
 /**
  *
  * A variant of BiMap which does not enforce uniqueness of values. This means the inverse
- * is a Multimap.
+ * is a Multimap.  (But the "forward" view is not a multimap; keys may only each have one value.)
  *
  * @param <K>
  * @param <V>