aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/main
diff options
context:
space:
mode:
authorHarald Musum <musum@oath.com>2018-10-03 22:52:36 +0200
committerHarald Musum <musum@oath.com>2018-10-03 22:52:36 +0200
commit6725fcc595f6707f26c6db88d7f7d7f521331524 (patch)
tree2472472d1f73f0d75faf060bec07e2a3b996ee2c /document/src/main
parentba8f907a02e84411e9a16326d357c06ccb6517cc (diff)
Remove end tag
Diffstat (limited to 'document/src/main')
-rw-r--r--document/src/main/java/com/yahoo/document/select/NowCheckVisitor.java2
-rw-r--r--document/src/main/java/com/yahoo/document/select/Visitor.java2
-rw-r--r--document/src/main/java/com/yahoo/document/select/convert/NowQueryExpression.java2
-rw-r--r--document/src/main/java/com/yahoo/document/select/convert/NowQueryNode.java2
-rw-r--r--document/src/main/java/com/yahoo/document/select/convert/SelectionExpressionConverter.java2
-rw-r--r--document/src/main/java/com/yahoo/document/select/rule/NowNode.java2
6 files changed, 6 insertions, 6 deletions
diff --git a/document/src/main/java/com/yahoo/document/select/NowCheckVisitor.java b/document/src/main/java/com/yahoo/document/select/NowCheckVisitor.java
index 60bed2cbb3b..5efcdec848a 100644
--- a/document/src/main/java/com/yahoo/document/select/NowCheckVisitor.java
+++ b/document/src/main/java/com/yahoo/document/select/NowCheckVisitor.java
@@ -7,7 +7,7 @@ import com.yahoo.document.select.rule.*;
/**
* Traverse and check if there exists any now() function in the expression tree.
*
- * @author Ulf Lilleengen</a>
+ * @author Ulf Lilleengen
*/
public class NowCheckVisitor implements Visitor {
diff --git a/document/src/main/java/com/yahoo/document/select/Visitor.java b/document/src/main/java/com/yahoo/document/select/Visitor.java
index 82ac98112b4..0ef94fd22d4 100644
--- a/document/src/main/java/com/yahoo/document/select/Visitor.java
+++ b/document/src/main/java/com/yahoo/document/select/Visitor.java
@@ -6,7 +6,7 @@ import com.yahoo.document.select.rule.*;
/**
* This interface can be used to create custom visitors for the selection tree.
*
- * @author Ulf Lilleengen</a>
+ * @author Ulf Lilleengen
*/
public interface Visitor {
diff --git a/document/src/main/java/com/yahoo/document/select/convert/NowQueryExpression.java b/document/src/main/java/com/yahoo/document/select/convert/NowQueryExpression.java
index e2e533833af..d379a73aec1 100644
--- a/document/src/main/java/com/yahoo/document/select/convert/NowQueryExpression.java
+++ b/document/src/main/java/com/yahoo/document/select/convert/NowQueryExpression.java
@@ -9,7 +9,7 @@ import com.yahoo.document.select.rule.ComparisonNode;
* Represents a query containing a valid now() expression. The now expression
* is very strict right now, but can be expanded later.
*
- * @author Ulf Lilleengen</a>
+ * @author Ulf Lilleengen
*/
public class NowQueryExpression {
private final AttributeNode attribute;
diff --git a/document/src/main/java/com/yahoo/document/select/convert/NowQueryNode.java b/document/src/main/java/com/yahoo/document/select/convert/NowQueryNode.java
index 19d6aaf4f4e..121fa0a45eb 100644
--- a/document/src/main/java/com/yahoo/document/select/convert/NowQueryNode.java
+++ b/document/src/main/java/com/yahoo/document/select/convert/NowQueryNode.java
@@ -6,7 +6,7 @@ import com.yahoo.document.select.rule.ArithmeticNode;
/**
* Represents the now node in a query expression.
*
- * @author Ulf Lilleengen</a>
+ * @author Ulf Lilleengen
*/
public class NowQueryNode {
private final long value;
diff --git a/document/src/main/java/com/yahoo/document/select/convert/SelectionExpressionConverter.java b/document/src/main/java/com/yahoo/document/select/convert/SelectionExpressionConverter.java
index 5dff3163399..46721254b9f 100644
--- a/document/src/main/java/com/yahoo/document/select/convert/SelectionExpressionConverter.java
+++ b/document/src/main/java/com/yahoo/document/select/convert/SelectionExpressionConverter.java
@@ -11,7 +11,7 @@ import java.util.Map;
* Class which converts a selection tree into a set of queries per document type.
* If unsupported operations are or illegal arguments are encountered, an exception is thrown.
*
- * @author Ulf Lilleengen</a>
+ * @author Ulf Lilleengen
*/
public class SelectionExpressionConverter implements Visitor {
diff --git a/document/src/main/java/com/yahoo/document/select/rule/NowNode.java b/document/src/main/java/com/yahoo/document/select/rule/NowNode.java
index 0bd381034ac..900423addff 100644
--- a/document/src/main/java/com/yahoo/document/select/rule/NowNode.java
+++ b/document/src/main/java/com/yahoo/document/select/rule/NowNode.java
@@ -4,7 +4,7 @@ import com.yahoo.document.BucketIdFactory;
import com.yahoo.document.select.*;
/**
- * @author Ulf Lilleengen</a>
+ * @author Ulf Lilleengen
*/
public class NowNode implements ExpressionNode {