From 6722080cfce19666fd892aa5ad0bb87324aa0b1a Mon Sep 17 00:00:00 2001 From: Michael McCandless Date: Tue, 28 Aug 2012 16:16:38 +0000 Subject: [PATCH] use {@code ...} git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1378203 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 665a87a51c2..ed1e26b43de 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<Query> of all the disjuncts to add + * @param disjuncts a {@code Collection} 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<Query> + * via {@code Iterable} * @param disjuncts a collection of queries to add as disjuncts. */ public void add(Collection disjuncts) { this.disjuncts.addAll(disjuncts); } - /** @return An Iterator<Query> over the disjuncts */ + /** @return An {@code Iterator} over the disjuncts */ public Iterator iterator() { return disjuncts.iterator(); }