Minor formatting changes
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/fcf50ba0 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/fcf50ba0 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/fcf50ba0 Branch: refs/heads/sf-plugins Commit: fcf50ba0fbcab0c8716041224fc694e0e0566936 Parents: c996493 Author: Mike Tutkowski <[email protected]> Authored: Fri Sep 18 16:31:53 2015 -0600 Committer: Mike Tutkowski <[email protected]> Committed: Fri Sep 18 19:28:24 2015 -0600 ---------------------------------------------------------------------- .../apache/cloudstack/solidfire/ApiSolidFireServiceImpl2.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/fcf50ba0/plugins/api/solidfire/src/org/apache/cloudstack/solidfire/ApiSolidFireServiceImpl2.java ---------------------------------------------------------------------- diff --git a/plugins/api/solidfire/src/org/apache/cloudstack/solidfire/ApiSolidFireServiceImpl2.java b/plugins/api/solidfire/src/org/apache/cloudstack/solidfire/ApiSolidFireServiceImpl2.java index 29a920c..7ad57e6 100644 --- a/plugins/api/solidfire/src/org/apache/cloudstack/solidfire/ApiSolidFireServiceImpl2.java +++ b/plugins/api/solidfire/src/org/apache/cloudstack/solidfire/ApiSolidFireServiceImpl2.java @@ -374,7 +374,7 @@ public class ApiSolidFireServiceImpl2 extends AdapterBase implements APIChecker, } if (!_sfVirtualNetworkDao.remove(id)) { - throw new CloudRuntimeException("Unable to remove the following virtual network:" + id); + throw new CloudRuntimeException("Unable to remove the following virtual network: " + id); } SfCluster sfCluster = getSfCluster(sfVirtualNetwork.getSfClusterId()); @@ -476,7 +476,7 @@ public class ApiSolidFireServiceImpl2 extends AdapterBase implements APIChecker, verifyPermissionsForAccount(sfVirtualNetwork.getAccountId()); if (!_sfVolumeDao.remove(id)) { - throw new CloudRuntimeException("Unable to remove the following volume:" + id); + throw new CloudRuntimeException("Unable to remove the following volume: " + id); } SfCluster sfCluster = getSfCluster(sfVirtualNetwork.getSfClusterId());
