removed self-assignment It must have been a copy-paste from the other constructor.
Signed-off-by: Laszlo Hornyak <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/8e3ae40b Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/8e3ae40b Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/8e3ae40b Branch: refs/heads/master Commit: 8e3ae40ba26bd7cd7ebd6f7423a75ef40c26615a Parents: d22b65f Author: Laszlo Hornyak <[email protected]> Authored: Sun Feb 9 18:46:36 2014 +0100 Committer: Laszlo Hornyak <[email protected]> Committed: Sun Feb 9 18:46:36 2014 +0100 ---------------------------------------------------------------------- .../kvm/src/org/apache/cloudstack/utils/qemu/QemuImgFile.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8e3ae40b/plugins/hypervisors/kvm/src/org/apache/cloudstack/utils/qemu/QemuImgFile.java ---------------------------------------------------------------------- diff --git a/plugins/hypervisors/kvm/src/org/apache/cloudstack/utils/qemu/QemuImgFile.java b/plugins/hypervisors/kvm/src/org/apache/cloudstack/utils/qemu/QemuImgFile.java index 90d925d..034c31b 100644 --- a/plugins/hypervisors/kvm/src/org/apache/cloudstack/utils/qemu/QemuImgFile.java +++ b/plugins/hypervisors/kvm/src/org/apache/cloudstack/utils/qemu/QemuImgFile.java @@ -41,7 +41,6 @@ public class QemuImgFile { public QemuImgFile(String fileName, PhysicalDiskFormat format) { this.fileName = fileName; - this.size = size; this.format = format; }
