mirror of https://github.com/apache/lucene.git
#12715: remove deprecated FSTCompiler constructor since this is an experimental/internal API
This commit is contained in:
parent
df07febfe8
commit
63759a463d
|
@ -122,18 +122,6 @@ public class FSTCompiler<T> {
|
|||
|
||||
final BytesStore bytes;
|
||||
|
||||
/**
|
||||
* Instantiates an FST/FSA builder with default settings and pruning options turned off. For more
|
||||
* tuning and tweaking, see {@link Builder}.
|
||||
*
|
||||
* @deprecated Use FSTCompiler.Builder instead. This method will be removed in an upcoming major
|
||||
* release.
|
||||
*/
|
||||
@Deprecated
|
||||
public FSTCompiler(FST.INPUT_TYPE inputType, Outputs<T> outputs) {
|
||||
this(inputType, 32.0, outputs, true, 15, 1f);
|
||||
}
|
||||
|
||||
private FSTCompiler(
|
||||
FST.INPUT_TYPE inputType,
|
||||
double suffixRAMLimitMB,
|
||||
|
|
Loading…
Reference in New Issue