mirror of https://github.com/apache/lucene.git
Fixed issue with ctor parameter being ignored
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@160984 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e88213a2d9
commit
0c99b57cc1
|
@ -45,7 +45,7 @@ public class PlainTextDictionary implements Dictionary {
|
|||
|
||||
|
||||
public PlainTextDictionary (InputStream dictFile) {
|
||||
in=new BufferedReader(new InputStreamReader(System.in));
|
||||
in=new BufferedReader(new InputStreamReader(dictFile));
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue