From 60eea7f2239afaa86ed16e210e9f6e1ea13777e3 Mon Sep 17 00:00:00 2001 From: Abhi Date: Fri, 13 Apr 2012 12:03:15 +0530 Subject: [PATCH] bug CS-14466: removing blank statement --- server/src/com/cloud/upgrade/dao/Upgrade2214to30.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/server/src/com/cloud/upgrade/dao/Upgrade2214to30.java b/server/src/com/cloud/upgrade/dao/Upgrade2214to30.java index f573b2121e0..ef634ee4c0c 100755 --- a/server/src/com/cloud/upgrade/dao/Upgrade2214to30.java +++ b/server/src/com/cloud/upgrade/dao/Upgrade2214to30.java @@ -860,9 +860,6 @@ public class Upgrade2214to30 implements DbUpgrade { pstmt = conn .prepareStatement("UPDATE op_host_capacity, data_center SET op_host_capacity.capacity_state='Disabled' where data_center.id=op_host_capacity.data_center_id and data_center.allocation_state='Disabled';"); pstmt.executeUpdate(); - pstmt = conn - .prepareStatement(""); - pstmt.executeUpdate(); } catch (SQLException e) { throw new CloudRuntimeException("Unable to update op_host_capacity table. ", e); } finally {