LUCENE-2323: move ChainedFilter from misc to contrib/queries

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@932748 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2010-04-10 15:36:46 +00:00
parent a4b8c40e4a
commit 06283e9f63
5 changed files with 12 additions and 10 deletions

View File

@ -127,7 +127,9 @@ Build
* LUCENE-2323: Moved contrib/regex into contrib/queries. Moved the
queryparsers under contrib/misc and contrib/surround into contrib/queryparser.
Moved contrib/fast-vector-highlighter into contrib/highlighter. (Robert Muir)
Moved contrib/fast-vector-highlighter into contrib/highlighter.
Moved ChainedFilter from contrib/misc to contrib/queries. contrib/spatial now
depends on contrib/queries instead of contrib/misc. (Robert Muir)
* LUCENE-2333: Fix failures during contrib builds, when classes in
core were changed without ant clean. This fix also optimizes the

View File

@ -1,4 +1,4 @@
package org.apache.lucene.misc;
package org.apache.lucene.search;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more

View File

@ -1,4 +1,4 @@
package org.apache.lucene.misc;
package org.apache.lucene.search;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more

View File

@ -25,18 +25,18 @@
<import file="../contrib-build.xml"/>
<contrib-uptodate name="misc" property="misc.uptodate" classpath.property="misc.jar"/>
<contrib-uptodate name="queries" property="queries.uptodate" classpath.property="queries.jar"/>
<path id="classpath">
<pathelement path="${misc.jar}"/>
<pathelement path="${queries.jar}"/>
<path refid="base.classpath"/>
</path>
<target name="compile-core" depends="build-misc, common.compile-core" />
<target name="compile-core" depends="build-queries, common.compile-core" />
<target name="build-misc" unless="misc.uptodate">
<echo>Misc building dependency ${misc.jar}</echo>
<ant antfile="../misc/build.xml" target="default" inheritall="false" dir="../misc" />
<target name="build-queries" unless="queries.uptodate">
<echo>Misc building dependency ${queries.jar}</echo>
<ant antfile="../queries/build.xml" target="default" inheritall="false" dir="../queries" />
</target>
</project>

View File

@ -18,11 +18,11 @@
package org.apache.lucene.spatial.tier;
import org.apache.lucene.search.ConstantScoreQuery;
import org.apache.lucene.search.ChainedFilter;
import org.apache.lucene.search.Filter;
import org.apache.lucene.search.Query;
import org.apache.lucene.search.QueryWrapperFilter;
import org.apache.lucene.spatial.geohash.GeoHashDistanceFilter;
import org.apache.lucene.misc.ChainedFilter;
/**
* <p><font color="red"><b>NOTE:</b> This API is still in