1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-17 13:15:44 +02:00

small eclipse 2.1 change, added getRawLocation

This commit is contained in:
David Inglis 2002-12-20 14:59:11 +00:00
parent 7df01e0b8c
commit 4b1b6754f1

View file

@ -504,7 +504,14 @@ public abstract class Resource extends PlatformObject implements IResource {
* @see org.eclipse.core.resources.IResource#isLinked() * @see org.eclipse.core.resources.IResource#isLinked()
*/ */
public boolean isLinked() { public boolean isLinked() {
return false; return false; // If this changes to true then need to change getRawLocation below
}
/**
* @see org.eclipse.core.resources.IResource#getRawLocation()
*/
public IPath getRawLocation() {
return getLocation();
} }
} }