Skip to content

Commit

Permalink
Adding a fix for Map mapping which allows to avoid default value for …
Browse files Browse the repository at this point in the history
…custom mapping
  • Loading branch information
mohanvive committed May 5, 2016
1 parent 0fcb9c6 commit ad4df45
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -210,7 +210,9 @@
mapEbProperties[index].setName(propertyNameValueAndType[0].trim());
mapEbProperties[index].setValueOf(propertyNameValueAndType[1].trim());
mapEbProperties[index].setType(propertyNameValueAndType[2].trim());
mapEbProperties[index].setDefaultValue(propertyNameValueAndType[3].trim());
if (propertyNameValueAndType.length >= 4) {
mapEbProperties[index].setDefaultValue(propertyNameValueAndType[3].trim());
}
index++;
}
}
Expand Down

0 comments on commit ad4df45

Please sign in to comment.