StorableDocument -> StoredDocument

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1405239 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Rowe 2012-11-03 00:25:59 +00:00
parent 0169bc707d
commit af6044f434
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ Changes in backwards compatibility policy
* LUCENE-3312: The API of oal.document was restructured to
differentiate between stored documents and indexed documents.
IndexReader.document(int) now returns StorableDocument
IndexReader.document(int) now returns StoredDocument
instead of Document. In most cases a simple replacement
of the return type is enough to upgrade (see MIGRATE.txt).
(Nikola Tanković, Uwe Schindler, Chris Male, Mike McCandless,

View File

@ -4,5 +4,5 @@
The API of oal.document was restructured to differentiate between stored
documents and indexed documents. IndexReader.document(int) now returns
StorableDocument instead of Document. In most cases a simple replacement
StoredDocument instead of Document. In most cases a simple replacement
of the return type is enough to upgrade.