- Timestamp:
- 2007-09-24T09:03:12+12:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
indexers/trunk/lucene-gs/src/org/greenstone/LuceneWrapper/GS2LuceneQuery.java
r13909 r14559 211 211 public void setDefaultConjunctionOperator(String default_conjunction_operator) { 212 212 this.default_conjunction_operator = default_conjunction_operator.toUpperCase(); 213 if (default_conjunction_operator == "AND") {213 if (default_conjunction_operator.equals("AND")) { 214 214 query_parser.setDefaultOperator(query_parser.AND_OPERATOR); 215 215 query_parser_no_stop_words.setDefaultOperator(query_parser.AND_OPERATOR);
Note:
See TracChangeset
for help on using the changeset viewer.