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:
parent
7df01e0b8c
commit
4b1b6754f1
1 changed files with 8 additions and 1 deletions
|
@ -504,7 +504,14 @@ public abstract class Resource extends PlatformObject implements IResource {
|
|||
* @see org.eclipse.core.resources.IResource#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();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue