lucene 2.9 rc5 update

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@816834 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2009-09-19 00:34:01 +00:00
parent 745fad657d
commit 6e2dd9a567
19 changed files with 29 additions and 17 deletions

View File

@ -61,7 +61,7 @@ error. See SOLR-1410 for more information.
Versions of Major Components
----------------------------
Apache Lucene 2.9.0-rc4
Apache Lucene 2.9.0-rc5
Apache Tika 0.4
Detailed Change List

View File

@ -1,2 +0,0 @@
AnyObjectId[7e82651f766ce279d83edc96c96200978fce078c] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[6c2723ccb7c16ef050941014049c1a6e14b39ba5] was removed in git history.
Apache SVN contains full history.

View File

@ -1,2 +0,0 @@
AnyObjectId[4f21b9c67bbb00a5e332ecaf9cb5968300d0ecb3] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[db6f65a2815103ac9538b406100392c9e0fc1af9] was removed in git history.
Apache SVN contains full history.

View File

@ -1,2 +0,0 @@
AnyObjectId[d0606e9c160a35f0bbe6d5871c23e7991dcfaf1b] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[74320de7292411db06e6714fe9c8a4e37fbb33f8] was removed in git history.
Apache SVN contains full history.

View File

@ -1,2 +0,0 @@
AnyObjectId[ad5d1cef3f06cbd38b5a0db2446cfd6ea2f182c7] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[db67ede8cfa091524c60001c1ec90c4daaec0647] was removed in git history.
Apache SVN contains full history.

View File

@ -1,2 +0,0 @@
AnyObjectId[5ca889e15b9903526a52c0cba45a0668e7cfc42d] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[a2f1839f6012dc462af70266cf8dc9b7c7ccc7e9] was removed in git history.
Apache SVN contains full history.

View File

@ -1,2 +0,0 @@
AnyObjectId[ff5ea89c5469b26920f8fee7f389cd02c36e1ac0] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[096dc792fd71d014cc4c0b03f507ca2b2c497764] was removed in git history.
Apache SVN contains full history.

View File

@ -1,2 +0,0 @@
AnyObjectId[87e15434de770a51f3af2bf4ee0b09beb8620569] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[c6dd6e7a276e02f76fffe59993275e2d81763314] was removed in git history.
Apache SVN contains full history.

View File

@ -1,2 +0,0 @@
AnyObjectId[4e889dee2dc5dde3ce82014140f64f5090cda845] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[94b969a714ac94fbe5bab3dbbea89571cbaa2ee2] was removed in git history.
Apache SVN contains full history.

View File

@ -288,6 +288,12 @@ abstract class DocSetBase implements DocSet {
}
};
}
@Override
public boolean isCacheable() {
return true;
}
};
}
};

View File

@ -648,6 +648,12 @@ public class SortedIntDocSet extends DocSetBase {
};
}
@Override
public boolean isCacheable() {
return true;
}
};
}
};