Martin Peřina has uploaded a new change for review. Change subject: webadmin: Fix build issue ......................................................................
webadmin: Fix build issue Fix build issue introduced in last rebase of I5c95db55a56b7a81ae81876e57426fd167bc0545. Change-Id: I08b16433ca518bc15d3e4bd71aa495ddf8782959 Signed-off-by: Martin Perina <[email protected]> --- M frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/hosts/NewHostModel.java 1 file changed, 2 insertions(+), 2 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/35/36235/1 diff --git a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/hosts/NewHostModel.java b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/hosts/NewHostModel.java index 79f66e2..343e176 100644 --- a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/hosts/NewHostModel.java +++ b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/hosts/NewHostModel.java @@ -96,7 +96,7 @@ if (dhost != null && dhg != null) { vds.setVdsName(dhost.getName()); vds.setHostName(dhost.getName() + "." + //$NON-NLS-1$ - (dhg.getDomainName() != null ? dhg.getDomainName() : constants.empty())); + (dhg.getDomainName() != null ? dhg.getDomainName() : "")); //$NON-NLS-1$ } updateModelFromVds(vds, null, false, null); } @@ -107,7 +107,7 @@ if (dhg != null) { vds.setVdsName(getName().getEntity()); vds.setHostName(getName().getEntity() + "." + //$NON-NLS-1$ - (dhg.getDomainName() != null ? dhg.getDomainName() : constants.empty())); + (dhg.getDomainName() != null ? dhg.getDomainName() : "")); //$NON-NLS-1$ } updateModelFromVds(vds, null, false, null); } -- To view, visit http://gerrit.ovirt.org/36235 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I08b16433ca518bc15d3e4bd71aa495ddf8782959 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Martin Peřina <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
