LUCENE-5235: Add more information to backwards break changes section.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1525376 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2013-09-22 15:27:25 +00:00
parent 34adebab3b
commit 49adf29d17
1 changed files with 4 additions and 1 deletions

View File

@ -103,7 +103,10 @@ Changes in backwards compatibility policy
* LUCENE-5235: Sub classes of Tokenizer have to call super.reset()
when implementing reset(). Otherwise the consumer will get an
IllegalStateException because the Reader is not correctly assigned.
(Uwe Schindler, Robert Muir)
It is important to never change the "input" field on Tokenizer
without using setReader(). The "input" field must not be used
outside reset(), incrementToken(), or end() - especially not in
the constructor. (Uwe Schindler, Robert Muir)
* LUCENE-5204: Directory doesn't have default implementations for
LockFactory-related methods, which have been moved to BaseDirectory. If you