Commiting more changes to fix RSE issues with PHP projects.
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / corext / util / Resources.java
index d03b7b3..c8c2325 100644 (file)
@@ -202,7 +202,7 @@ public class Resources {
        public static String[] getLocationOSStrings(IResource[] resources) {
                List result = new ArrayList(resources.length);
                for (int i = 0; i < resources.length; i++) {
-                       IPath location = resources[i].getLocation();
+                       IPath location = resources[i].getFullPath();
                        if (location != null)
                                result.add(location.toOSString());
                }