-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 5.2.1
-
Component/s: modules/analysis
-
Labels:None
-
Lucene Fields:New, Patch Available
There is a small typo in GermanStemmer that leads to a wrong calclulation of the substCount in line 203:
substCount =+ 2;
should be
substCount += 2;
I created a Pull Request for this some time ago, but it was apprently overlooked:
https://github.com/apache/lucene-solr/pull/141