Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
5.2.1
-
None
-
New, Patch Available
Description
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