|
From: Markus B. <mba...@us...> - 2005-08-29 16:06:52
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3102/src/org/rubypeople/rdt/internal/launching Modified Files: InterpreterRunnerConfiguration.java Log Message: consider projects which are inaccessible Index: InterpreterRunnerConfiguration.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.launching/src/org/rubypeople/rdt/internal/launching/InterpreterRunnerConfiguration.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** InterpreterRunnerConfiguration.java 2 Mar 2005 00:53:26 -0000 1.11 --- InterpreterRunnerConfiguration.java 29 Aug 2005 16:06:44 -0000 1.12 *************** *** 97,101 **** protected void addToLoadPath(StringBuffer loadPath, IProject project) { ! loadPath.append(" -I " + RdtLaunchingPlugin.osDependentPath(project.getLocation().toOSString())); } --- 97,103 ---- protected void addToLoadPath(StringBuffer loadPath, IProject project) { ! if (!project.isAccessible()) { ! return ; ! } loadPath.append(" -I " + RdtLaunchingPlugin.osDependentPath(project.getLocation().toOSString())); } |