Fix broken build -- remove line that should not have been included in the HBASE-623 commit

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@658100 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-05-20 05:12:31 +00:00
parent 9cb0f8bdfb
commit b365b0bf61
2 changed files with 1 additions and 1 deletions

View File

@ -23,6 +23,7 @@
# The java implementation to use. Required. # The java implementation to use. Required.
# export JAVA_HOME=/usr/lib/j2sdk1.5-sun # export JAVA_HOME=/usr/lib/j2sdk1.5-sun
export JAVA_HOME=/usr
# Extra Java CLASSPATH elements. Optional. # Extra Java CLASSPATH elements. Optional.
# export HBASE_CLASSPATH= # export HBASE_CLASSPATH=

View File

@ -606,7 +606,6 @@ public class HStoreFile implements HConstants {
// info files in hbase (Serialized References are written into the // info files in hbase (Serialized References are written into the
// 'info' file that accompanies HBase Store files). // 'info' file that accompanies HBase Store files).
out.writeUTF(Integer.toString(encodedRegionName)); out.writeUTF(Integer.toString(encodedRegionName));
out.writeInt(this.encodedRegionName);
out.writeLong(fileid); out.writeLong(fileid);
// Write true if we're doing top of the file. // Write true if we're doing top of the file.
out.writeBoolean(isTopFileRegion(region)); out.writeBoolean(isTopFileRegion(region));