Shahar Havivi has uploaded a new change for review. Change subject: ui: remove last delimiter in CustomProperties ......................................................................
ui: remove last delimiter in CustomProperties Change-Id: I3909f97cf2e02845c41a25bf5ca6f8327a6da3cd Bug-Url: https://bugzilla.redhat.com/1113503 Signed-off-by: Shahar Havivi <[email protected]> --- M frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/vms/key_value/KeyValueModel.java 1 file changed, 2 insertions(+), 2 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/91/29891/1 diff --git a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/vms/key_value/KeyValueModel.java b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/vms/key_value/KeyValueModel.java index 481531e..1fa738a 100644 --- a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/vms/key_value/KeyValueModel.java +++ b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/vms/key_value/KeyValueModel.java @@ -6,7 +6,6 @@ import java.util.LinkedHashMap; import java.util.List; import java.util.Map; - import org.ovirt.engine.core.compat.StringHelper; import org.ovirt.engine.ui.uicommonweb.validation.IValidation; import org.ovirt.engine.ui.uicommonweb.validation.RegexValidation; @@ -139,7 +138,8 @@ } builder.append(PROPERTIES_DELIMETER); } - return builder.toString(); + // remove the last delimiter + return builder.subSequence(0, builder.length() - 1).toString(); } public boolean validate() { -- To view, visit http://gerrit.ovirt.org/29891 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I3909f97cf2e02845c41a25bf5ca6f8327a6da3cd Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Shahar Havivi <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
