summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorGeir Storli <geirst@oath.com>2018-09-28 07:55:33 +0000
committergjoranv <gv@oath.com>2019-01-21 15:09:22 +0100
commitc68fa8f9b50b4879823fda4cf393c58946bfa163 (patch)
treeb852abba12db11f39eae45b28cbdbe5730e9568a /searchlib
parent7697c2cb156101dccf7eb1edaaa97fd0c4c3739c (diff)
Remove deprecated APIs.
Diffstat (limited to 'searchlib')
-rwxr-xr-xsearchlib/src/main/java/com/yahoo/searchlib/rankingexpression/rule/ExpressionNode.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/searchlib/src/main/java/com/yahoo/searchlib/rankingexpression/rule/ExpressionNode.java b/searchlib/src/main/java/com/yahoo/searchlib/rankingexpression/rule/ExpressionNode.java
index c432e49fe2b..dba0da7301d 100755
--- a/searchlib/src/main/java/com/yahoo/searchlib/rankingexpression/rule/ExpressionNode.java
+++ b/searchlib/src/main/java/com/yahoo/searchlib/rankingexpression/rule/ExpressionNode.java
@@ -45,20 +45,6 @@ public abstract class ExpressionNode implements Serializable {
public abstract StringBuilder toString(StringBuilder builder, SerializationContext context, Deque<String> path, CompositeNode parent);
/**
- * Returns a script instance of this based on the supplied script functions.
- * @deprecated use the faster one that takes and returns a StringBuilder instead.
- *
- * @param context the serialization context
- * @param path the call path to this, used for cycle detection, or null if this is a root
- * @param parent the parent node of this, or null if it a root
- * @return the main script, referring to script instances.
- */
- @Deprecated
- public String toString(SerializationContext context, Deque<String> path, CompositeNode parent) {
- return toString(new StringBuilder(), context, path, parent).toString();
- }
-
- /**
* Returns the type this will return if evaluated with the given context.
*
* @param context the variable type bindings to use for this evaluation