summaryrefslogtreecommitdiffstats
path: root/config-lib
diff options
context:
space:
mode:
authorgjoranv <gv@yahoo-inc.com>2017-07-20 11:20:47 +0200
committergjoranv <gv@yahoo-inc.com>2017-07-20 11:20:47 +0200
commitd6e1a58b1ee27e39f1cd5675fd2750b3d7f996b1 (patch)
tree9eb653529008efd273f68ceec1629432338fd871 /config-lib
parent7bf195eb539a6d39664f643ba16a973392157c48 (diff)
Remove LeafNode.initialize().
- package private, and seems unused.
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.