|
From: <caw...@us...> - 2007-01-19 20:35:24
|
Revision: 1821
http://svn.sourceforge.net/rubyeclipse/?rev=1821&view=rev
Author: cawilliams
Date: 2007-01-19 12:35:22 -0800 (Fri, 19 Jan 2007)
Log Message:
-----------
Modified Paths:
--------------
trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/StandardVMRunner.java
Modified: trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/StandardVMRunner.java
===================================================================
--- trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/StandardVMRunner.java 2007-01-19 20:27:55 UTC (rev 1820)
+++ trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/StandardVMRunner.java 2007-01-19 20:35:22 UTC (rev 1821)
@@ -118,23 +118,22 @@
}
/**
- * Construct and return a String containing the full path of a java executable
- * command such as 'java' or 'javaw.exe'. If the configuration specifies an
+ * Construct and return a String containing the full path of a ruby executable
+ * command such as 'ruby' or 'rubyw.exe'. If the configuration specifies an
* explicit executable, that is used.
*
- * @return full path to java executable
+ * @return full path to ruby executable
* @exception CoreException if unable to locate an executeable
*/
protected String constructProgramString(VMRunnerConfiguration config) throws CoreException {
-
- // Look for the user-specified java executable command
+ // Look for the user-specified ruby executable command
String command= null;
Map map= config.getVMSpecificAttributesMap();
if (map != null) {
command = (String)map.get(IRubyLaunchConfigurationConstants.ATTR_RUBY_COMMAND);
}
- // If no java command was specified, use default executable
+ // If no ruby command was specified, use default executable
if (command == null) {
File exe = StandardVMType.findRubyExecutable(fVMInstance.getInstallLocation());
if (exe == null) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|