anmolbabu has uploaded a new change for review. Change subject: webadmin : Fix build failure due to '<>'operator ......................................................................
webadmin : Fix build failure due to '<>'operator This patch replaces a <> operator as 3.5 doesn't support as it doesn't come with java-1.7 Change-Id: I83a62f4163213c42c4cf2876fd3b7743fbd9ef14 Signed-off-by: Anmol Babu <anb...@redhat.com> --- M frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/clusters/ClusterModel.java 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/92/40592/1 diff --git a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/clusters/ClusterModel.java b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/clusters/ClusterModel.java index 6a1b67e..9c3d15d 100644 --- a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/clusters/ClusterModel.java +++ b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/clusters/ClusterModel.java @@ -832,7 +832,7 @@ @Override public void onSuccess(Object model, Object returnValue) { ClusterModel.this.stopProgress(); - List<String> glusterTunedProfiles = new ArrayList<>(); + List<String> glusterTunedProfiles = new ArrayList<String>(); if (((VdcQueryReturnValue) returnValue).getSucceeded()) { glusterTunedProfiles.addAll((List<String>)(((VdcQueryReturnValue) returnValue).getReturnValue())); } -- To view, visit https://gerrit.ovirt.org/40592 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I83a62f4163213c42c4cf2876fd3b7743fbd9ef14 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: ovirt-engine-3.5-gluster Gerrit-Owner: anmolbabu <anb...@redhat.com> _______________________________________________ Engine-patches mailing list Engine-patches@ovirt.org http://lists.ovirt.org/mailman/listinfo/engine-patches