[SDC-29] rebase continue work to align source
[sdc.git] / asdctool / src / main / java / org / openecomp / sdc / asdctool / impl / migration / v1702 / Migration1702.java
index 861e913..6fa8b45 100644 (file)
@@ -1036,10 +1036,8 @@ public class Migration1702 {
                                property.setName(fe.getKey());
                                Map<String, Object> definitionInYaml = (Map<String, Object>) fe.getValue();
                                property.setType((String) definitionInYaml.get("type"));
-                               // Fix by Tal G
                                property.setRequired((Boolean) definitionInYaml.get("required"));
                                property.setDescription((String) definitionInYaml.get("description"));
-                               // Fix by Tal G
                                String defaultValue = definitionInYaml.get("default") == null ? null : definitionInYaml.get("default").toString();
                                if (defaultValue != null) {
                                        property.setDefaultValue(defaultValue);