Author: adietish
Date: 2010-11-23 07:25:58 -0500 (Tue, 23 Nov 2010)
New Revision: 26836
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java
Log:
corrected error text
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java
===================================================================
---
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java 2010-11-23
11:57:10 UTC (rev 26835)
+++
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java 2010-11-23
12:25:58 UTC (rev 26836)
@@ -249,7 +249,7 @@
public void loadChildren() throws DeltaCloudException {
DeltaCloudMultiException multiException = new
DeltaCloudMultiException(MessageFormat.format(
- "Could not load children from cloud {0}", getName()));
+ "Could not load children of cloud {0}", getName()));
clearImages();
clearInstances();
try {
@@ -431,15 +431,6 @@
}
}
- public DeltaCloudInstance[] destroyInstance(String instanceId) throws
DeltaCloudException {
- DeltaCloudInstance instance = getInstance(instanceId);
- performInstanceAction(instance, DeltaCloudInstance.DESTROY);
- instances.remove(instance);
- // TODO: remove notification with all instances, replace by notifying
- // the changed instance
- return notifyInstanceListListeners();
- }
-
public void createKey(String keyname, String keystoreLocation) throws
DeltaCloudException {
try {
client.createKey(keyname, keystoreLocation);
Show replies by date