|
From: <caw...@us...> - 2007-01-15 15:20:05
|
Revision: 1769
http://svn.sourceforge.net/rubyeclipse/?rev=1769&view=rev
Author: cawilliams
Date: 2007-01-15 07:20:00 -0800 (Mon, 15 Jan 2007)
Log Message:
-----------
use absolute path not toString to write file location
Modified Paths:
--------------
trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/RubyRuntime.java
Modified: trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/RubyRuntime.java
===================================================================
--- trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/RubyRuntime.java 2007-01-15 14:19:08 UTC (rev 1768)
+++ trunk/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/RubyRuntime.java 2007-01-15 15:20:00 UTC (rev 1769)
@@ -245,7 +245,7 @@
writer.write("\" ");
writer.write(ATTR_PATH);
writer.write("=\"");
- writer.write(entry.getInstallLocation().toString());
+ writer.write(entry.getInstallLocation().getAbsolutePath());
writer.write("\"");
if (entry.equals(selectedInterpreter)) {
writer.write(" ");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|