make determinize public, its already exposed via e.g. Automaton.determinize()

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1329016 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-04-23 01:04:16 +00:00
parent 63700ceef7
commit 0391b6a213

View File

@ -583,7 +583,7 @@ final public class BasicOperations {
* <p> * <p>
* Worst case complexity: exponential in number of states. * Worst case complexity: exponential in number of states.
*/ */
static void determinize(Automaton a) { public static void determinize(Automaton a) {
if (a.deterministic || a.isSingleton()) { if (a.deterministic || a.isSingleton()) {
return; return;
} }