I noticed that the javadoc description of the
org.java.apache.hadoop.hbase.client.Result.getMap() functions had a hiccup
because of an unescaped '<'. Here's a patch to fix the problem:
Index: src/main/java/org/apache/hadoop/hbase/client/Result.java
===================================================================
--- src/main/java/org/apache/hadoop/hbase/client/Result.java (revision
1096627)
+++ src/main/java/org/apache/hadoop/hbase/client/Result.java (working copy)
@@ -290,7 +290,7 @@
* Map of families to all versions of its qualifiers and values.
* <p>
* Returns a three level Map of the form:
- * <code>Map<family,Map<qualifier,Map<timestamp,value>>></code>
+ * <code>Map<family,Map<qualifier,Map<timestamp,value>>></code>
* <p>
* Note: All other map returning methods make use of this map internally.
* @return map from families to qualifiers to versions
@@ -335,7 +335,7 @@
/**
* Map of families to their most recent qualifiers and values.
* <p>
- * Returns a two level Map of the form:
<code>Map<family,Map<qualifier,value>></code>
+ * Returns a two level Map of the form:
<code>Map<family,Map<qualifier,value>></code>
* <p>
* The most recent version of each qualifier will be used.
* @return map from families to qualifiers and value