mirror of https://github.com/apache/lucene.git
make constructors public
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@724059 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8660ccb303
commit
702ea32da7
|
@ -32,7 +32,7 @@ public class ArabicNormalizationFilter extends TokenFilter {
|
|||
|
||||
protected ArabicNormalizer normalizer = null;
|
||||
|
||||
protected ArabicNormalizationFilter(TokenStream input) {
|
||||
public ArabicNormalizationFilter(TokenStream input) {
|
||||
super(input);
|
||||
normalizer = new ArabicNormalizer();
|
||||
}
|
||||
|
|
|
@ -32,7 +32,7 @@ public class ArabicStemFilter extends TokenFilter {
|
|||
|
||||
protected ArabicStemmer stemmer = null;
|
||||
|
||||
protected ArabicStemFilter(TokenStream input) {
|
||||
public ArabicStemFilter(TokenStream input) {
|
||||
super(input);
|
||||
stemmer = new ArabicStemmer();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue