re base code
[sdc.git] / catalog-dao / src / main / java / org / openecomp / sdc / be / dao / graph / datatype / GraphRelation.java
index b223733..0c6b66f 100644 (file)
@@ -32,12 +32,12 @@ public class GraphRelation extends GraphElement {
 
        public GraphRelation() {
                super(GraphElementTypeEnum.Relationship);
-               properties = new HashMap<String, Object>();
+               properties = new HashMap<>();
        }
 
        public GraphRelation(String type) {
                super(GraphElementTypeEnum.Relationship);
-               properties = new HashMap<String, Object>();
+               properties = new HashMap<>();
                setType(type);
        }