mirror of https://github.com/apache/lucene.git
improve the comment about the unused variable
Submitted by: Boris Okner git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150428 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3515b30029
commit
fe169b138e
|
@ -552,8 +552,9 @@ class RussianStemmer
|
||||||
if (!perfectiveGerund(stemmingZone))
|
if (!perfectiveGerund(stemmingZone))
|
||||||
{
|
{
|
||||||
reflexive(stemmingZone);
|
reflexive(stemmingZone);
|
||||||
// variable r is unused, we are just interested in the side effect of
|
// variable r is unused, we are just interested in the flow that gets
|
||||||
// adjectival() or verb(), if adjectival() does nothing etc.:
|
// created by logical expression: apply adjectival(); if that fails,
|
||||||
|
// apply verb() etc
|
||||||
boolean r =
|
boolean r =
|
||||||
adjectival(stemmingZone)
|
adjectival(stemmingZone)
|
||||||
|| verb(stemmingZone)
|
|| verb(stemmingZone)
|
||||||
|
|
Loading…
Reference in New Issue