Return-Path: X-Original-To: apmail-hbase-dev-archive@www.apache.org Delivered-To: apmail-hbase-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0A26F10EF for ; Tue, 26 Apr 2011 18:05:10 +0000 (UTC) Received: (qmail 47206 invoked by uid 500); 26 Apr 2011 18:05:09 -0000 Delivered-To: apmail-hbase-dev-archive@hbase.apache.org Received: (qmail 47150 invoked by uid 500); 26 Apr 2011 18:05:09 -0000 Mailing-List: contact dev-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list dev@hbase.apache.org Received: (qmail 47142 invoked by uid 99); 26 Apr 2011 18:05:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Apr 2011 18:05:09 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_LOW,RFC_ABUSE_POST,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of leifwickland@gmail.com designates 209.85.214.41 as permitted sender) Received: from [209.85.214.41] (HELO mail-bw0-f41.google.com) (209.85.214.41) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Apr 2011 18:05:01 +0000 Received: by bwz17 with SMTP id 17so1122681bwz.14 for ; Tue, 26 Apr 2011 11:04:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:from:date :message-id:subject:to:content-type; bh=DsHMrlxliDJPQIVrVXqCsJQC7dq5OF09O4NccaksREY=; b=MfPh29Ml/Ocw5O6v3BYRMxkk1w78l487OA2NAYwnRorLk1IfSihvYHd5SUvWIn/CBv wG9MOT4M0pO6CfAxC31vbCk4RT9LSBn9Mp1NOwRI9joxFMi5/DJAudkbtJblxkV47nBt ELpHacsDBNh6tm7W7lQxhz/MOt7Nblzmh+N3Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; b=QZpsAO2i5FvNBgihQd70IUE6P0iLk4lve7URAKPrpgVuk8uK9apFnd0Ai1fnPVrRAh 4gzG7XytNiT3+7bZq11UiTuPuHDLWAKtcHFDAnMO1fAfMH+SE5WoazUpEwWDyrimeTWK SJSdK0IKubny31uuV0AyAx5lgNRa2cpBDv1W0= Received: by 10.205.37.2 with SMTP id tc2mr1063659bkb.14.1303841081153; Tue, 26 Apr 2011 11:04:41 -0700 (PDT) MIME-Version: 1.0 Received: by 10.204.84.73 with HTTP; Tue, 26 Apr 2011 11:04:26 -0700 (PDT) In-Reply-To: References: From: Leif Wickland Date: Tue, 26 Apr 2011 12:04:26 -0600 Message-ID: Subject: Patch to src/main/java/org/apache/hadoop/hbase/client/Result.java to fix javadoc To: dev@hbase.apache.org Content-Type: multipart/alternative; boundary=20cf305f91c27c5a8504a1d6281e X-Virus-Checked: Checked by ClamAV on apache.org --20cf305f91c27c5a8504a1d6281e Content-Type: text/plain; charset=UTF-8 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. *

* Returns a three level Map of the form: - * Map>> + * Map<family,Map<qualifier,Map<timestamp,value>>> *

* 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. *

- * Returns a two level Map of the form: Map> + * Returns a two level Map of the form: Map<family,Map<qualifier,value>> *

* The most recent version of each qualifier will be used. * @return map from families to qualifiers and value --20cf305f91c27c5a8504a1d6281e--