You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/12/12 21:34:58 UTC

svn commit: r1420955 - /lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/fst/Builder.java

Author: rmuir
Date: Wed Dec 12 20:34:55 2012
New Revision: 1420955

URL: http://svn.apache.org/viewvc?rev=1420955&view=rev
Log:
LUCENE-4617: willPackFST -> doPackFST

Modified:
    lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/fst/Builder.java

Modified: lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/fst/Builder.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/fst/Builder.java?rev=1420955&r1=1420954&r2=1420955&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/fst/Builder.java (original)
+++ lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/fst/Builder.java Wed Dec 12 20:34:55 2012
@@ -142,7 +142,7 @@ public class Builder<T> {
    * @param doPackFST Pass true to create a packed FST.
    * 
    * @param acceptableOverheadRatio How to trade speed for space when building the FST. This option
-   *    is only relevant when willPackFST is true. @see PackedInts#getMutable(int, int, float)
+   *    is only relevant when doPackFST is true. @see PackedInts#getMutable(int, int, float)
    */
   public Builder(FST.INPUT_TYPE inputType, int minSuffixCount1, int minSuffixCount2, boolean doShareSuffix,
                  boolean doShareNonSingletonNodes, int shareMaxTailLength, Outputs<T> outputs,