You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2015/04/24 17:06:30 UTC

hbase git commit: HBASE-13523 API Doumentation formatting is broken (Dylan Jones)

Repository: hbase
Updated Branches:
  refs/heads/master 40a80c1fe -> 4c97d4b24


HBASE-13523 API Doumentation formatting is broken (Dylan Jones)


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

Branch: refs/heads/master
Commit: 4c97d4b244c854ddbb302ecf733a8c4890cd4b69
Parents: 40a80c1
Author: stack <st...@apache.org>
Authored: Fri Apr 24 08:06:20 2015 -0700
Committer: stack <st...@apache.org>
Committed: Fri Apr 24 08:06:20 2015 -0700

----------------------------------------------------------------------
 .../java/org/apache/hadoop/hbase/HColumnDescriptor.java   | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/4c97d4b2/hbase-client/src/main/java/org/apache/hadoop/hbase/HColumnDescriptor.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/HColumnDescriptor.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/HColumnDescriptor.java
index a64cfac..a480441 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/HColumnDescriptor.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/HColumnDescriptor.java
@@ -300,7 +300,7 @@ public class HColumnDescriptor implements Comparable<HColumnDescriptor> {
    * The other attributes are defaulted.
    *
    * @param familyName Column family name. Must be 'printable' -- digit or
-   * letter -- and may not contain a <code>:<code>
+   * letter -- and may not contain a <code>:</code>
    */
   public HColumnDescriptor(final String familyName) {
     this(Bytes.toBytes(familyName));
@@ -311,7 +311,7 @@ public class HColumnDescriptor implements Comparable<HColumnDescriptor> {
    * The other attributes are defaulted.
    *
    * @param familyName Column family name. Must be 'printable' -- digit or
-   * letter -- and may not contain a <code>:<code>
+   * letter -- and may not contain a <code>:</code>
    */
   public HColumnDescriptor(final byte [] familyName) {
     this (familyName == null || familyName.length <= 0?
@@ -342,7 +342,7 @@ public class HColumnDescriptor implements Comparable<HColumnDescriptor> {
   /**
    * Constructor
    * @param familyName Column family name. Must be 'printable' -- digit or
-   * letter -- and may not contain a <code>:<code>
+   * letter -- and may not contain a <code>:</code>
    * @param maxVersions Maximum number of versions to keep
    * @param compression Compression type
    * @param inMemory If true, column data should be kept in an HRegionServer's
@@ -370,7 +370,7 @@ public class HColumnDescriptor implements Comparable<HColumnDescriptor> {
   /**
    * Constructor
    * @param familyName Column family name. Must be 'printable' -- digit or
-   * letter -- and may not contain a <code>:<code>
+   * letter -- and may not contain a <code>:</code>
    * @param maxVersions Maximum number of versions to keep
    * @param compression Compression type
    * @param inMemory If true, column data should be kept in an HRegionServer's
@@ -404,7 +404,7 @@ public class HColumnDescriptor implements Comparable<HColumnDescriptor> {
   /**
    * Constructor
    * @param familyName Column family name. Must be 'printable' -- digit or
-   * letter -- and may not contain a <code>:<code>
+   * letter -- and may not contain a <code>:</code>
    * @param minVersions Minimum number of versions to keep
    * @param maxVersions Maximum number of versions to keep
    * @param keepDeletedCells Whether to retain deleted cells until they expire