Skip to content

Commit

Permalink
update to support 7.x
Browse files Browse the repository at this point in the history
  • Loading branch information
medcl committed Apr 11, 2019
1 parent dda86dc commit 02d551e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<inceptionYear>2012</inceptionYear>

<properties>
<elasticsearch.version>6.3.0</elasticsearch.version>
<elasticsearch.version>7.0.0</elasticsearch.version>
<maven.compiler.target>1.8</maven.compiler.target>
<elasticsearch.assembly.descriptor>${project.basedir}/src/main/assemblies/plugin.xml</elasticsearch.assembly.descriptor>
<elasticsearch.plugin.name>analysis-pinyin</elasticsearch.plugin.name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
public class PinyinAbbreviationsTokenizerFactory extends AbstractTokenizerFactory {

public PinyinAbbreviationsTokenizerFactory(IndexSettings indexSettings, Environment env, String name, Settings settings) {
super(indexSettings, name, settings);
super(indexSettings, settings);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class PinyinTokenizerFactory extends AbstractTokenizerFactory {
private PinyinConfig config;

public PinyinTokenizerFactory(IndexSettings indexSettings, Environment env, String name, Settings settings) {
super(indexSettings, name, settings);
super(indexSettings, settings);
config=new PinyinConfig(settings);
}

Expand Down

0 comments on commit 02d551e

Please sign in to comment.