You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by Leif Wickland <le...@gmail.com> on 2011/04/26 01:23:28 UTC

Patch to src/main/java/org/apache/hadoop/hbase/client/Result.java to fix javadoc

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&lt;qualifier,Map&lt;timestamp,value>>></code>
+   * <code>Map&lt;family,Map&lt;qualifier,Map&lt;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&lt;qualifier,value>></code>
+   * Returns a two level Map of the form:
<code>Map&lt;family,Map&lt;qualifier,value>></code>
    * <p>
    * The most recent version of each qualifier will be used.
    * @return map from families to qualifiers and value

Re: Patch to src/main/java/org/apache/hadoop/hbase/client/Result.java to fix javadoc

Posted by Stack <st...@duboce.net>.
Thank you.  I applied the below to branch and trunk.
St.Ack

On Mon, Apr 25, 2011 at 4:23 PM, Leif Wickland <le...@gmail.com> 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&lt;qualifier,Map&lt;timestamp,value>>></code>
> +   * <code>Map&lt;family,Map&lt;qualifier,Map&lt;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&lt;qualifier,value>></code>
> +   * Returns a two level Map of the form:
> <code>Map&lt;family,Map&lt;qualifier,value>></code>
>    * <p>
>    * The most recent version of each qualifier will be used.
>    * @return map from families to qualifiers and value
>

Patch to src/main/java/org/apache/hadoop/hbase/client/Result.java to fix javadoc

Posted by Leif Wickland <le...@gmail.com>.
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&lt;qualifier,Map&lt;timestamp,value>>></code>
+   * <code>Map&lt;family,Map&lt;qualifier,Map&lt;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&lt;qualifier,value>></code>
+   * Returns a two level Map of the form:
<code>Map&lt;family,Map&lt;qualifier,value>></code>
    * <p>
    * The most recent version of each qualifier will be used.
    * @return map from families to qualifiers and value