Allon Mureinik has uploaded a new change for review. Change subject: core: Remove unused Image ctor ......................................................................
core: Remove unused Image ctor Removed the ctor that isn't used anywhere in production code. Change-Id: I46c289f5e575d4d78b3e7aa8240d7a332e8e13dd Signed-off-by: Allon Mureinik <[email protected]> --- M backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/Image.java 1 file changed, 0 insertions(+), 29 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/15/18115/1 diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/Image.java b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/Image.java index aee1d04..2bd9aae 100644 --- a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/Image.java +++ b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/Image.java @@ -47,35 +47,6 @@ public Image() { } - public Image(Guid id, - boolean active, - boolean boot, - Date creationDate, - Date lastModified, - Guid parentId, - Guid templateImageId, - Guid snapshotId, - Guid diskId, - ImageStatus status, - VolumeType volumeType, - long size, - VolumeFormat volumeFormat, - Guid quotaId) { - this.id = id; - this.active = active; - this.creationDate = creationDate; - this.lastModified = lastModified; - this.parentId = parentId; - this.templateImageId = templateImageId; - this.snapshotId = snapshotId; - this.diskId = diskId; - this.status = status; - this.volumeType = volumeType; - this.size = size; - this.volumeFormat = volumeFormat; - this.quotaId = quotaId; - } - @Override public Guid getId() { return id; -- To view, visit http://gerrit.ovirt.org/18115 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I46c289f5e575d4d78b3e7aa8240d7a332e8e13dd Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Allon Mureinik <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
