summaryrefslogtreecommitdiffstats
path: root/config-lib
diff options
context:
space:
mode:
Diffstat (limited to 'config-lib')
-rw-r--r--config-lib/src/main/java/com/yahoo/config/LeafNode.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/config-lib/src/main/java/com/yahoo/config/LeafNode.java b/config-lib/src/main/java/com/yahoo/config/LeafNode.java
index 40c27c7c0df..15575590314 100644
--- a/config-lib/src/main/java/com/yahoo/config/LeafNode.java
+++ b/config-lib/src/main/java/com/yahoo/config/LeafNode.java
@@ -37,19 +37,6 @@ public abstract class LeafNode<T> extends Node implements Cloneable {
}
/**
- * Try to initialize this node with the given value. Returns true
- * on success, false otherwise.
- *
- * @param value the string represention of the desired node value.
- * @return true on success, false otherwise.
- */
- final boolean initialize(String value) {
- boolean success = setValue(value);
- initialized |= success;
- return success;
- }
-
- /**
* Subclasses must implement this, in compliance with the rules given in the return tag.
*
* @return the String representation of the node value, or the string "(null)" if the value is null.