File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
hbase-client/src/main/java/org/apache/hadoop/hbase/client Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -253,7 +253,9 @@ public Delete addFamily(final byte [] family, final long timestamp) {
253253 * @param family family name
254254 * @param timestamp version timestamp
255255 * @return this for invocation chaining
256+ * @deprecated Since hbase-1.0.0. Use {@link #addFamilyVersion(byte[], long)}
256257 */
258+ @ Deprecated
257259 public Delete deleteFamilyVersion (byte [] family , long timestamp ) {
258260 return addFamilyVersion (family , timestamp );
259261 }
@@ -264,9 +266,7 @@ public Delete deleteFamilyVersion(byte [] family, long timestamp) {
264266 * @param family family name
265267 * @param timestamp version timestamp
266268 * @return this for invocation chaining
267- * @deprecated Since hbase-1.0.0. Use {@link #addFamilyVersion(byte[], long)}
268269 */
269- @ Deprecated
270270 public Delete addFamilyVersion (final byte [] family , final long timestamp ) {
271271 List <Cell > list = familyMap .get (family );
272272 if (list == null ) {
You can’t perform that action at this time.
0 commit comments