aboutsummaryrefslogtreecommitdiffstats
path: root/document/src
diff options
context:
space:
mode:
authorHarald Musum <musum@oath.com>2018-10-03 21:00:15 +0200
committerHarald Musum <musum@oath.com>2018-10-03 22:05:27 +0200
commitba8f907a02e84411e9a16326d357c06ccb6517cc (patch)
tree035de2d29a2a2118c8d5cfdbe8c86841562d8d5a /document/src
parent9446df9277dec1343b78b6f2369e08b5eed3d843 (diff)
Use full name
Diffstat (limited to 'document/src')
-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 11721713c9b..60bed2cbb3b 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 <a href="mailto:lulf@yahoo-inc.com">Ulf Lilleengen</a>
+ * @author Ulf Lilleengen</a>
*/
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 7af792b9bc8..82ac98112b4 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 <a href="mailto:lulf@yahoo-inc.com">Ulf Lilleengen</a>
+ * @author Ulf Lilleengen</a>
*/
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 e3541a2ea4d..e2e533833af 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 <a href="mailto:lulf@yahoo-inc.com">Ulf Lilleengen</a>
+ * @author Ulf Lilleengen</a>
*/
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 a236a44ea31..19d6aaf4f4e 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 <a href="mailto:lulf@yahoo-inc.com">Ulf Lilleengen</a>
+ * @author Ulf Lilleengen</a>
*/
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 0d0f92686f0..5dff3163399 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 <a href="mailto:lulf@yahoo-inc.com">Ulf Lilleengen</a>
+ * @author Ulf Lilleengen</a>
*/
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 d0ae3d363d1..0bd381034ac 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 <a href="mailto:lulf@yahoo-inc.com">Ulf Lilleengen</a>
+ * @author Ulf Lilleengen</a>
*/
public class NowNode implements ExpressionNode {