summaryrefslogtreecommitdiffstats
path: root/config-lib/src/main/java/com/yahoo/config/Node.java
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2020-11-27 10:35:20 +0100
committerJon Bratseth <bratseth@gmail.com>2020-11-27 10:35:20 +0100
commit0facde033e35dbd0510c095519e322667ba278bd (patch)
tree50a840996e7c47a4287488bfd03dd04c4f49427e /config-lib/src/main/java/com/yahoo/config/Node.java
parent7a60abe577e6cd9cbbe2b3aa62d7220ff5b191ec (diff)
Revert "Merge pull request #15495 from vespa-engine/revert-15494-bratseth/apply-on-restart-take-2"
This reverts commit ef4ece0ae64a1f1ec8accb257168b2a08d6971b1, reversing changes made to 204eb6f5faf91a6159ba5c7e01d2d8b6f307e8bd.
Diffstat (limited to 'config-lib/src/main/java/com/yahoo/config/Node.java')
-rw-r--r--config-lib/src/main/java/com/yahoo/config/Node.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/config-lib/src/main/java/com/yahoo/config/Node.java b/config-lib/src/main/java/com/yahoo/config/Node.java
index 8d16b9727c1..ed11bdc9891 100644
--- a/config-lib/src/main/java/com/yahoo/config/Node.java
+++ b/config-lib/src/main/java/com/yahoo/config/Node.java
@@ -5,7 +5,6 @@ package com.yahoo.config;
* The Node class is superclass for all nodes in a {@link
* ConfigInstance}. Important subclasses of this node are {@link
* InnerNode} and {@link LeafNode}.
- *
*/
public abstract class Node {
@@ -13,7 +12,7 @@ public abstract class Node {
* Postinitialize this node. Any node needing to process its values depending on the config
* id should override this method.
*
- * @param configId the configId of the ConfigInstance that owns (or is) this node
+ * @param configId the configId of the ConfigInstance that owns (or is) this node
*/
public void postInitialize(String configId) { return; }
@@ -26,4 +25,5 @@ public abstract class Node {
protected Object clone() throws CloneNotSupportedException {
return super.clone();
}
+
}