X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=dom%2Fmdsal-dom-inmemory-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fmdsal%2Fdom%2Fstore%2Finmemory%2FWritableInteriorNode.java;h=9a179d2af4b83c5287523288d69db7ee2ac4248b;hb=41c34ca065881c748d1811b7ba6a5145ce6ed608;hp=2b14f0e0a0570c84fd6dba938a04b99e68170dc4;hpb=564120a9eb5d77b947187468f255353fa70ab4df;p=mdsal.git diff --git a/dom/mdsal-dom-inmemory-datastore/src/main/java/org/opendaylight/mdsal/dom/store/inmemory/WritableInteriorNode.java b/dom/mdsal-dom-inmemory-datastore/src/main/java/org/opendaylight/mdsal/dom/store/inmemory/WritableInteriorNode.java index 2b14f0e0a0..9a179d2af4 100644 --- a/dom/mdsal-dom-inmemory-datastore/src/main/java/org/opendaylight/mdsal/dom/store/inmemory/WritableInteriorNode.java +++ b/dom/mdsal-dom-inmemory-datastore/src/main/java/org/opendaylight/mdsal/dom/store/inmemory/WritableInteriorNode.java @@ -17,7 +17,7 @@ class WritableInteriorNode extends WriteableNodeWithSubshard { private final PathArgument identifier; - public WritableInteriorNode(PathArgument identifier, Map children) { + WritableInteriorNode(PathArgument identifier, Map children) { super(children); this.identifier = Preconditions.checkNotNull(identifier); }