mirror of https://github.com/apache/lucene.git
make TermsParams an interface rather then a class (like all the other params classes)
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@721684 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f1a3951c6d
commit
497a61a2fb
|
@ -1,4 +1,3 @@
|
|||
package org.apache.solr.common.params;
|
||||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
|
@ -16,12 +15,14 @@ package org.apache.solr.common.params;
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.solr.common.params;
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
**/
|
||||
public class TermsParams {
|
||||
public interface TermsParams {
|
||||
/**
|
||||
* The component name. Set to true to turn on the TermsComponent
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue