|
From: <caw...@us...> - 2007-02-19 21:46:07
|
Revision: 1979
http://svn.sourceforge.net/rubyeclipse/?rev=1979&view=rev
Author: cawilliams
Date: 2007-02-19 13:46:05 -0800 (Mon, 19 Feb 2007)
Log Message:
-----------
Modified Paths:
--------------
trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/Openable.java
trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/RubyModelManager.java
Modified: trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/Openable.java
===================================================================
--- trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/Openable.java 2007-02-19 21:45:51 UTC (rev 1978)
+++ trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/Openable.java 2007-02-19 21:46:05 UTC (rev 1979)
@@ -228,7 +228,7 @@
if (!parentExists()) return false;
SourceFolderRoot root = getSourceFolderRoot();
if (root != null
- && (root == this || !root.isArchive())) {
+ && (root == this || !root.isExternal())) {
return resourceExists();
}
return super.exists();
Modified: trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/RubyModelManager.java
===================================================================
--- trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/RubyModelManager.java 2007-02-19 21:45:51 UTC (rev 1978)
+++ trunk/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/RubyModelManager.java 2007-02-19 21:46:05 UTC (rev 1979)
@@ -611,11 +611,11 @@
this.project = project;
}
- // updating raw classpath need to flush obsoleted cached information
+ // updating raw loadpath need to flush obsoleted cached information
// about resolved entries
- public synchronized void updateLoadpathInformation(ILoadpathEntry[] newRawClasspath) {
+ public synchronized void updateLoadpathInformation(ILoadpathEntry[] newRawLoadpath) {
- this.rawLoadpath = newRawClasspath;
+ this.rawLoadpath = newRawLoadpath;
this.resolvedLoadpath = null;
this.resolvedPathToRawEntries = null;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|