HBASE-1763 Put writeToWAL methods do not have proper getter/setter names

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@803731 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jonathan Gray 2009-08-12 22:36:22 +00:00
parent 5697ca19e0
commit 1ddddec018
2 changed files with 6 additions and 5 deletions

View File

@ -5,7 +5,10 @@ Release 0.21.0 - Unreleased
BUG FIXES
IMPROVEMENTS
HBASE-1760 Cleanup TODOs in HTable
HBASE-1760 Cleanup TODOs in HTable
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
OPTIMIZATIONS
@ -561,8 +564,6 @@ Release 0.20.0 - Unreleased
region info
HBASE-1743 [debug tool] Add regionsInTransition list to ClusterStatus
detailed output
HBASE-1759 Ability to specify scanner caching on a per-scan basis
(Ken Weiner via jgray)
OPTIMIZATIONS
HBASE-1412 Change values for delete column and column family in KeyValue

View File

@ -245,7 +245,7 @@ public class Put implements HeapSize, Writable, Comparable<Put> {
/**
* @return true if edits should be applied to WAL, false if not
*/
public boolean writeToWAL() {
public boolean getWriteToWAL() {
return this.writeToWAL;
}
@ -254,7 +254,7 @@ public class Put implements HeapSize, Writable, Comparable<Put> {
* Not writing the WAL means you may lose edits on server crash.
* @param write true if edits should be written to WAL, false if not
*/
public void writeToWAL(boolean write) {
public void setWriteToWAL(boolean write) {
this.writeToWAL = write;
}