You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2012/08/28 16:02:19 UTC

svn commit: r1378140 - /lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/DisjunctionMaxQuery.java

Author: mikemccand
Date: Tue Aug 28 14:02:19 2012
New Revision: 1378140

URL: http://svn.apache.org/viewvc?rev=1378140&view=rev
Log:
escape generics to HTML

Modified:
    lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/DisjunctionMaxQuery.java

Modified: lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/DisjunctionMaxQuery.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/DisjunctionMaxQuery.java?rev=1378140&r1=1378139&r2=1378140&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/DisjunctionMaxQuery.java (original)
+++ lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/search/DisjunctionMaxQuery.java Tue Aug 28 14:02:19 2012
@@ -61,7 +61,7 @@ public class DisjunctionMaxQuery extends
 
   /**
    * Creates a new DisjunctionMaxQuery
-   * @param disjuncts a Collection<Query> of all the disjuncts to add
+   * @param disjuncts a Collection&lt;Query&gt; of all the disjuncts to add
    * @param tieBreakerMultiplier   the weight to give to each matching non-maximum disjunct
    */
   public DisjunctionMaxQuery(Collection<Query> disjuncts, float tieBreakerMultiplier) {
@@ -77,14 +77,14 @@ public class DisjunctionMaxQuery extends
   }
 
   /** Add a collection of disjuncts to this disjunction
-   * via Iterable<Query>
+   * via Iterable&lt;Query&gt;
    * @param disjuncts a collection of queries to add as disjuncts.
    */
   public void add(Collection<Query> disjuncts) {
     this.disjuncts.addAll(disjuncts);
   }
 
-  /** @return An Iterator<Query> over the disjuncts */
+  /** @return An Iterator&lt;Query&gt; over the disjuncts */
   public Iterator<Query> iterator() {
     return disjuncts.iterator();
   }