Skip to content
Snippets Groups Projects
Commit 10d70e3d authored by Ludovic Apvrille's avatar Ludovic Apvrille
Browse files

Resolving bug on datatype attr

parent 07b2a9a9
No related branches found
No related tags found
No related merge requests found
......@@ -1226,6 +1226,10 @@ public class AvatarBDBlock extends TGCScalableWithInternalComponent implements S
id = elt.getAttribute("id");
valueAtt = elt.getAttribute("value");
if (valueAtt == null) {
valueAtt = "";
}
if (valueAtt.equals("null")) {
valueAtt = "";
}
......
......@@ -513,6 +513,11 @@ public class AvatarBDDataType extends TGCScalableWithInternalComponent implement
id = elt.getAttribute("id");
valueAtt = elt.getAttribute("value");
if (valueAtt == null) {
valueAtt = "";
}
if (valueAtt.equals("null")) {
valueAtt = "";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment