Skip to content

Commit

Permalink
HSEARCH-746 Move some engine classes to impl package
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelbernard authored and Sanne committed Jul 4, 2011
1 parent 7bd58e4 commit 6ad7c85
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
Expand Up @@ -69,6 +69,8 @@
import org.hibernate.search.bridge.FieldBridge;
import org.hibernate.search.bridge.LuceneOptions;
import org.hibernate.search.bridge.TwoWayFieldBridge;
import org.hibernate.search.engine.impl.DefaultBoostStrategy;
import org.hibernate.search.engine.impl.LuceneOptionsImpl;
import org.hibernate.search.impl.ConfigContext;
import org.hibernate.search.util.ClassLoaderHelper;
import org.hibernate.search.util.PassThroughAnalyzer;
Expand Down
Expand Up @@ -40,6 +40,8 @@
import org.apache.lucene.document.Field;
import org.apache.lucene.document.Fieldable;
import org.apache.lucene.index.Term;

import org.hibernate.search.engine.impl.LuceneOptionsImpl;
import org.hibernate.search.util.logging.impl.Log;

import org.hibernate.annotations.common.AssertionFailure;
Expand Down
Expand Up @@ -21,7 +21,9 @@
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
package org.hibernate.search.engine;
package org.hibernate.search.engine.impl;

import org.hibernate.search.engine.BoostStrategy;

/**
* @author Hardy Ferentschik
Expand Down
Expand Up @@ -21,7 +21,7 @@
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
package org.hibernate.search.engine;
package org.hibernate.search.engine.impl;

import org.apache.lucene.document.CompressionTools;
import org.apache.lucene.document.Document;
Expand All @@ -45,7 +45,7 @@
* @author Sanne Grinovero
* @author Gustavo Fernandes
*/
class LuceneOptionsImpl implements LuceneOptions {
public class LuceneOptionsImpl implements LuceneOptions {

private final boolean storeCompressed;
private final boolean storeUncompressed;
Expand Down

0 comments on commit 6ad7c85

Please sign in to comment.