add getter method for unit testing

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1702686 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2015-09-12 23:26:11 +00:00
parent 208a153780
commit 71d5daf040
1 changed files with 5 additions and 0 deletions

View File

@ -1240,4 +1240,9 @@ public class Dictionary {
}
}
}
/** Returns true if this dictionary was constructed with the {@code ignoreCase} option */
public boolean getIgnoreCase() {
return ignoreCase;
}
}