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:
parent
d1adcf1629
commit
93ab23183b
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue