mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-21 21:14:12 +08:00
removed boolean constants
This commit is contained in:
parent
ff7a7cdbe2
commit
f7b7ccb882
@ -31,9 +31,7 @@ import com.mysema.query.types.expr.EBoolean;
|
||||
* @author vema
|
||||
*/
|
||||
public class LuceneQuery implements SimpleQuery<LuceneQuery>, SimpleProjectable<Document>{
|
||||
public static final boolean DEFAULT = false;
|
||||
public static final boolean LOWER_CASE = true;
|
||||
|
||||
|
||||
private final QueryMixin<LuceneQuery> queryMixin;
|
||||
|
||||
private final LuceneSerializer serializer;
|
||||
|
||||
@ -108,7 +108,7 @@ public class LuceneQueryTest {
|
||||
writer.close();
|
||||
|
||||
searcher = new IndexSearcher(idx);
|
||||
query = new LuceneQuery(LuceneQuery.LOWER_CASE, searcher);
|
||||
query = new LuceneQuery(true, searcher);
|
||||
}
|
||||
|
||||
@After
|
||||
|
||||
Loading…
Reference in New Issue
Block a user