Thank you. I applied the below to branch and trunk. St.Ack
On Mon, Apr 25, 2011 at 4:23 PM, Leif Wickland <[email protected]> wrote: > I noticed that the javadoc description of the 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 >
