Fix broken build -- build was broken by hbase-824

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@690370 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-08-29 19:19:16 +00:00
parent d1adcf1629
commit 93ab23183b
1 changed files with 1 additions and 2 deletions

View File

@ -871,8 +871,7 @@ public class HStore implements HConstants {
final List<MapFile.Reader> pReaders)
throws IOException {
// Reverse order so we newest is first.
List<MapFile.Reader> copy = new ArrayList<MapFile.Reader>(pReaders.size());
Collections.copy(copy, pReaders);
List<MapFile.Reader> copy = new ArrayList<MapFile.Reader>(pReaders);
Collections.reverse(copy);
MapFile.Reader[] rdrs = pReaders.toArray(new MapFile.Reader[copy.size()]);
try {