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:
Erik Hatcher 2005-04-11 23:43:57 +00:00
parent e88213a2d9
commit 0c99b57cc1
1 changed files with 1 additions and 1 deletions

View File

@ -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));
}