You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2015/10/18 12:15:11 UTC

svn commit: r1709252 - /lucene/dev/branches/branch_5x/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/processors/GroupQueryNodeProcessor.java

Author: uschindler
Date: Sun Oct 18 10:15:10 2015
New Revision: 1709252

URL: http://svn.apache.org/viewvc?rev=1709252&view=rev
Log:
Fix deprecation warning

Modified:
    lucene/dev/branches/branch_5x/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/processors/GroupQueryNodeProcessor.java

Modified: lucene/dev/branches/branch_5x/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/processors/GroupQueryNodeProcessor.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/processors/GroupQueryNodeProcessor.java?rev=1709252&r1=1709251&r2=1709252&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/processors/GroupQueryNodeProcessor.java (original)
+++ lucene/dev/branches/branch_5x/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/processors/GroupQueryNodeProcessor.java Sun Oct 18 10:15:10 2015
@@ -51,6 +51,7 @@ import org.apache.lucene.queryparser.fle
  * @see org.apache.lucene.queryparser.flexible.standard.config.StandardQueryConfigHandler
  * @deprecated use {@link BooleanQuery2ModifierNodeProcessor} instead
  */
+@Deprecated
 public class GroupQueryNodeProcessor implements QueryNodeProcessor {
 
   private ArrayList<QueryNode> queryNodeList;