You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by nk...@apache.org on 2013/02/20 15:15:21 UTC

svn commit: r1448176 - /hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/client/Delete.java

Author: nkeywal
Date: Wed Feb 20 14:15:21 2013
New Revision: 1448176

URL: http://svn.apache.org/r1448176
Log:
HBASE-7870 Delete(byte [] row, long timestamp) constructor is deprecate and should not. (Jean-Marc Spaggiari)

Modified:
    hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/client/Delete.java

Modified: hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/client/Delete.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/client/Delete.java?rev=1448176&r1=1448175&r2=1448176&view=diff
==============================================================================
--- hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/client/Delete.java (original)
+++ hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/client/Delete.java Wed Feb 20 14:15:21 2013
@@ -82,7 +82,7 @@ public class Delete extends Mutation
    * @param row row key
    */
   public Delete(byte [] row) {
-    this(row, HConstants.LATEST_TIMESTAMP, null);
+    this(row, HConstants.LATEST_TIMESTAMP);
   }
 
   /**
@@ -96,8 +96,6 @@ public class Delete extends Mutation
    * families or columns, you must specify each timestamp individually.
    * @param row row key
    * @param timestamp maximum version timestamp (only for delete row)
-   * @param rowLock previously acquired row lock, or null
-   * @deprecated {@link RowLock} is deprecated, use #de
    */
   public Delete(byte [] row, long timestamp) {
     this.row = row;