mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-02 20:02:29 +01:00
Fixed the bug in xml response serializing (introduced while resolving merge conflict)
This commit is contained in:
parent
70fdf215e5
commit
d118a3d764
@ -240,7 +240,8 @@ public class ApiResponseSerializer {
|
||||
sb.append("</").append(serializedName.value()).append(">");
|
||||
}
|
||||
} else if (fieldValue instanceof Date) {
|
||||
sb.append("<").append(">").append(BaseCmd.getDateString((Date) fieldValue)).append("</").append(serializedName.value()).append(">");
|
||||
sb.append("<").append(serializedName.value()).append(">").append(BaseCmd.getDateString((Date) fieldValue)).
|
||||
append("</").append(serializedName.value()).append(">");
|
||||
} else if (fieldValue instanceof IdentityProxy) {
|
||||
IdentityProxy idProxy = (IdentityProxy)fieldValue;
|
||||
String id = (idProxy.getValue() != null ? String.valueOf(idProxy.getValue()) : "");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user