HBASE-2641 Refactor HLog splitLog, hbase-2437 continued; break out split code as new classes

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1001969 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2010-09-27 23:52:46 +00:00
parent 7faaf57d1b
commit 5affba7171
1 changed files with 9 additions and 0 deletions

View File

@ -274,6 +274,15 @@ public class Delete implements Writable, Row, Comparable<Row> {
return this.ts; return this.ts;
} }
/**
* Set the timestamp of the delete.
*
* @param timestamp
*/
public void setTimestamp(long timestamp) {
this.ts = timestamp;
}
/** /**
* @return string * @return string
*/ */