summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2018-11-20 14:46:37 +0100
committergjoranv <gv@oath.com>2019-01-21 15:09:27 +0100
commit81182050f567673fc3180764b3645fb76ca85dc5 (patch)
treecae51ade6b09ccbe7d316efb7b3d5b93e8bd3f18 /searchlib
parent0fb27af8c2d6b8e5ebb0255e21c220a89ce05eba (diff)
Generate html5 javadoc
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/main/java/com/yahoo/searchlib/aggregation/Grouping.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/searchlib/src/main/java/com/yahoo/searchlib/aggregation/Grouping.java b/searchlib/src/main/java/com/yahoo/searchlib/aggregation/Grouping.java
index a9e2bc73d6a..c13bde4b633 100644
--- a/searchlib/src/main/java/com/yahoo/searchlib/aggregation/Grouping.java
+++ b/searchlib/src/main/java/com/yahoo/searchlib/aggregation/Grouping.java
@@ -209,7 +209,7 @@ public class Grouping extends Identifiable {
*
* @param level The level to add.
* @return This, to allow chaining.
- * @throws NullPointerException If <tt>level</tt> argument is null.
+ * @throws NullPointerException If <code>level</code> argument is null.
*/
public Grouping addLevel(GroupingLevel level) {
level.getClass(); // throws NullPointerException
@@ -231,7 +231,7 @@ public class Grouping extends Identifiable {
*
* @param root The group to set as root.
* @return This, to allow chaining.
- * @throws NullPointerException If <tt>root</tt> argument is null.
+ * @throws NullPointerException If <code>root</code> argument is null.
*/
public Grouping setRoot(Group root) {
root.getClass(); // throws NullPointerException
@@ -249,7 +249,7 @@ public class Grouping extends Identifiable {
}
/**
- * <p>Sets whether or not grouping should be forced to execute in a single pass. If false, this <tt>Grouping</tt>
+ * <p>Sets whether or not grouping should be forced to execute in a single pass. If false, this <code>Grouping</code>
* might still execute in a single pass due to other constraints.</p>
*
* @param forceSinglePass True to force execution in single pass.