You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by jm...@apache.org on 2012/09/15 00:07:49 UTC

svn commit: r1384948 - in /hbase/branches/0.92: CHANGES.txt src/main/java/org/apache/hadoop/hbase/TableInfoMissingException.java

Author: jmhsieh
Date: Fri Sep 14 22:07:48 2012
New Revision: 1384948

URL: http://svn.apache.org/viewvc?rev=1384948&view=rev
Log:
HBASE-6792 Remove interface audience annotations in 0.94/0.92 introduced by HBASE-6516

Modified:
    hbase/branches/0.92/CHANGES.txt
    hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/TableInfoMissingException.java

Modified: hbase/branches/0.92/CHANGES.txt
URL: http://svn.apache.org/viewvc/hbase/branches/0.92/CHANGES.txt?rev=1384948&r1=1384947&r2=1384948&view=diff
==============================================================================
--- hbase/branches/0.92/CHANGES.txt (original)
+++ hbase/branches/0.92/CHANGES.txt Fri Sep 14 22:07:48 2012
@@ -106,6 +106,7 @@ Release 0.92.2 - Unreleased
    HBASE-6686  HFile Quarantine fails with missing dirs in hadoop 2.0
    HBASE-6321  ReplicationSource dies reading the peer's id
    HBASE-6516  hbck cannot detect any IOException while ".tableinfo" file is missing (Jie Huang)
+   HBASE-6792  Remove interface audience annotations in 0.94/0.92 introduced by HBASE-6516
 
   IMPROVEMENTS
    HBASE-5592  Make it easier to get a table from shell (Ben West)

Modified: hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/TableInfoMissingException.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/TableInfoMissingException.java?rev=1384948&r1=1384947&r2=1384948&view=diff
==============================================================================
--- hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/TableInfoMissingException.java (original)
+++ hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/TableInfoMissingException.java Fri Sep 14 22:07:48 2012
@@ -17,14 +17,11 @@
  */
 package org.apache.hadoop.hbase;
 
-import org.apache.hadoop.classification.InterfaceAudience;
-
 /**
  * 
  * Failed to find .tableinfo file under table dir
  *
  */
-@InterfaceAudience.Private
 @SuppressWarnings("serial")
 public class TableInfoMissingException extends HBaseIOException {