From a8ba6a23beb00e45f3a01feaf4c5c4ff48c871fa Mon Sep 17 00:00:00 2001 From: Michael McCandless Date: Tue, 28 Aug 2012 14:02:19 +0000 Subject: [PATCH] escape generics to HTML git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1378140 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/lucene/search/DisjunctionMaxQuery.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lucene/core/src/java/org/apache/lucene/search/DisjunctionMaxQuery.java b/lucene/core/src/java/org/apache/lucene/search/DisjunctionMaxQuery.java index 2c28ee09271..665a87a51c2 100644 --- a/lucene/core/src/java/org/apache/lucene/search/DisjunctionMaxQuery.java +++ b/lucene/core/src/java/org/apache/lucene/search/DisjunctionMaxQuery.java @@ -61,7 +61,7 @@ public class DisjunctionMaxQuery extends Query implements Iterable { /** * Creates a new DisjunctionMaxQuery - * @param disjuncts a Collection of all the disjuncts to add + * @param disjuncts a Collection<Query> of all the disjuncts to add * @param tieBreakerMultiplier the weight to give to each matching non-maximum disjunct */ public DisjunctionMaxQuery(Collection disjuncts, float tieBreakerMultiplier) { @@ -77,14 +77,14 @@ public class DisjunctionMaxQuery extends Query implements Iterable { } /** Add a collection of disjuncts to this disjunction - * via Iterable + * via Iterable<Query> * @param disjuncts a collection of queries to add as disjuncts. */ public void add(Collection disjuncts) { this.disjuncts.addAll(disjuncts); } - /** @return An Iterator over the disjuncts */ + /** @return An Iterator<Query> over the disjuncts */ public Iterator iterator() { return disjuncts.iterator(); }