Daniel Erez has uploaded a new change for review. Change subject: webadmin: remove redundant methods in ImportEntityData ......................................................................
webadmin: remove redundant methods in ImportEntityData Remove redundant setEntity/getEntity methods from ImportEntityData (to avoid warning [1]). [1] "CID 1223214: Missing call to superclass (CALL_SUPER)" Change-Id: Ifdb7706da4976bb889d2a5b1cee498746619dbc9 Signed-off-by: Daniel Erez <[email protected]> --- M frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/vms/ImportEntityData.java 1 file changed, 0 insertions(+), 9 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/25/28925/1 diff --git a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/vms/ImportEntityData.java b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/vms/ImportEntityData.java index beff1c1..0cc2116 100644 --- a/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/vms/ImportEntityData.java +++ b/frontend/webadmin/modules/uicommonweb/src/main/java/org/ovirt/engine/ui/uicommonweb/models/vms/ImportEntityData.java @@ -10,7 +10,6 @@ import java.util.List; public abstract class ImportEntityData extends EntityModel { - protected Object entity; boolean isExistsInSystem; private EntityModel clone; private ListModel<VDSGroup> cluster; @@ -20,14 +19,6 @@ setClone(new EntityModel(false)); setCluster(new ListModel()); setClusterQuota(new ListModel()); - } - - public Object getEntity() { - return entity; - } - - public void setEntity(Object entity) { - this.entity = entity; } public boolean isExistsInSystem() { -- To view, visit http://gerrit.ovirt.org/28925 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ifdb7706da4976bb889d2a5b1cee498746619dbc9 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Daniel Erez <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
