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:
parent
9cb0f8bdfb
commit
b365b0bf61
|
@ -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=
|
||||||
|
|
|
@ -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));
|
||||||
|
|
Loading…
Reference in New Issue