Upgrade Apache Lucene to 4.10.3. Would have needed to import the type for a parameter in one constructor, but since it was unused I took the liberty of simply removing it

Former-commit-id: 6e65307276619ed29354269fab2d5458b532766e
This commit is contained in:
Hans Joachim Desserud
2015-01-03 14:23:57 +01:00
parent 6bf8d396e0
commit 9390e71dd9
2 changed files with 1 additions and 12 deletions

View File

@@ -728,6 +728,6 @@ Copyright (c) 2012 Jeremy Long. All Rights Reserved.
</profile>
</profiles>
<properties>
<apache.lucene.version>4.7.1</apache.lucene.version>
<apache.lucene.version>4.10.3</apache.lucene.version>
</properties>
</project>

View File

@@ -38,17 +38,6 @@ public class AlphaNumericTokenizer extends CharTokenizer {
super(matchVersion, in);
}
/**
* Constructs a new AlphaNumericTokenizer.
*
* @param matchVersion the lucene version
* @param factory the AttributeFactory
* @param in the Reader
*/
public AlphaNumericTokenizer(Version matchVersion, AttributeFactory factory, Reader in) {
super(matchVersion, factory, in);
}
/**
* Determines if the char passed in is part of a token.
*