[jbosstools-commits] JBoss Tools SVN: r40988 - trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Mon May 14 10:53:22 EDT 2012


Author: dgolovin
Date: 2012-05-14 10:53:22 -0400 (Mon, 14 May 2012)
New Revision: 40988

Modified:
   trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/CreateServerFromRSEJob.java
Log:
fix for compilation errors in trunk continuous build

Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/CreateServerFromRSEJob.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/CreateServerFromRSEJob.java	2012-05-14 13:24:10 UTC (rev 40987)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/CreateServerFromRSEJob.java	2012-05-14 14:53:22 UTC (rev 40988)
@@ -205,7 +205,7 @@
 				String rtId = data[1];
 				IRuntime runtime = ServerCore.findRuntime(rtId);
 				IServer newServer = null;
-				newServer = ServerCreationUtils.createServer2(instance.getAlias(), runtime);
+				newServer = ServerCreationUtils.createServer2(runtime,instance.getAlias());
 				newServer = RSEUtils.setServerToRSEMode(newServer, host, home, config);
 				return;
 			}
@@ -268,7 +268,7 @@
 		String config = data[1];
 		String rtId = data[2];
 		IRuntime runtime = ServerCore.findRuntime(rtId);
-		IServer newServer = ServerCreationUtils.createServer2(instance.getAlias(), runtime);
+		IServer newServer = ServerCreationUtils.createServer2(runtime,instance.getAlias());
 		newServer = RSEUtils.setServerToRSEMode(newServer, host, home, config);
 	}
 



More information about the jbosstools-commits mailing list