X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-xsql%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fdom%2Fxsql%2FXSQLBluePrintNode.java;h=b5db163dcd6adbfea08caa6c0c45f35784b3958a;hp=d3cd91a6bd656bb5d92078092d9544bb4ae19eb6;hb=0f1c2bc494711636246c127eff476043ff61445a;hpb=266d3f916591c6efcfefabdc9228208d0ede84d4 diff --git a/opendaylight/md-sal/sal-dom-xsql/src/main/java/org/opendaylight/controller/md/sal/dom/xsql/XSQLBluePrintNode.java b/opendaylight/md-sal/sal-dom-xsql/src/main/java/org/opendaylight/controller/md/sal/dom/xsql/XSQLBluePrintNode.java index d3cd91a6bd..b5db163dcd 100644 --- a/opendaylight/md-sal/sal-dom-xsql/src/main/java/org/opendaylight/controller/md/sal/dom/xsql/XSQLBluePrintNode.java +++ b/opendaylight/md-sal/sal-dom-xsql/src/main/java/org/opendaylight/controller/md/sal/dom/xsql/XSQLBluePrintNode.java @@ -23,16 +23,16 @@ public class XSQLBluePrintNode implements Serializable { private static final long serialVersionUID = 1L; private Class myInterface = null; private String myInterfaceString = null; - private Set relations = new HashSet(); - private Set inheritingNodes = new HashSet(); - private Set children = new HashSet(); + private Set relations = new HashSet<>(); + private Set inheritingNodes = new HashSet<>(); + private Set children = new HashSet<>(); private XSQLBluePrintNode parent = null; private int level = -1; private transient Set parentHierarchySet = null; private String myInterfaceName = null; - private Set columns = new HashSet(); - private Map origNameToColumn = new HashMap(); + private Set columns = new HashSet<>(); + private Map origNameToColumn = new HashMap<>(); private transient Object[] odlSchemaNodes = null; private boolean module = false; @@ -249,7 +249,7 @@ public class XSQLBluePrintNode implements Serializable { } public Set getClonedParents() { - Set result = new HashSet(); + Set result = new HashSet<>(); result.addAll(this.relations); return result; }