SOLR-1948: PatternTokenizerFactory should use parent's args

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@953925 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Koji Sekiguchi 2010-06-12 01:49:06 +00:00
parent a0d0ae4f21
commit 51f649e353
2 changed files with 2 additions and 1 deletions

View File

@ -328,6 +328,8 @@ Bug Fixes
* SOLR-1914: Change the JSON response format to output float/double
values of NaN,Infinity,-Infinity as strings. (yonik)
* SOLR-1948: PatternTokenizerFactory should use parent's args (koji)
Other Changes
----------------------

View File

@ -65,7 +65,6 @@ public class PatternTokenizerFactory extends BaseTokenizerFactory
public static final String PATTERN = "pattern";
public static final String GROUP = "group";
protected Map<String,String> args;
protected Pattern pattern;
protected int group;