HBASE-1763 second commit to fix compile error in hregion

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@803738 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jonathan Gray 2009-08-12 23:07:12 +00:00
parent 1ddddec018
commit 53b0527a5d
2 changed files with 3 additions and 2 deletions

View File

@ -9,6 +9,7 @@ Release 0.21.0 - Unreleased
HBASE-1759 Ability to specify scanner caching on a per-scan basis
(Ken Weiner via jgray)
HBASE-1763 Put writeToWAL methods do not have proper getter/setter names
(second commit to fix compile error in hregion)
OPTIMIZATIONS

View File

@ -1199,7 +1199,7 @@ public class HRegion implements HConstants, HeapSize { // , Writable{
* @throws IOException
*/
public void put(Put put) throws IOException {
this.put(put, null, put.writeToWAL());
this.put(put, null, put.getWriteToWAL());
}
/**
@ -1217,7 +1217,7 @@ public class HRegion implements HConstants, HeapSize { // , Writable{
* @throws IOException
*/
public void put(Put put, Integer lockid) throws IOException {
this.put(put, lockid, put.writeToWAL());
this.put(put, lockid, put.getWriteToWAL());
}
/**