Archived
0
This commit is contained in:
2018-06-24 15:16:18 +03:00
parent cb45d2c8a1
commit d3efd95151

View File

@@ -203,6 +203,12 @@ public class Text {
}
} else if (obj instanceof TextColor) {
color = (TextColor) obj;
} else if (obj != null){
if (content == null) {
content = obj.toString();
} else {
content = content.concat(obj.toString());
}
}
}