mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-03 14:25:37 +02:00
fixed bug #237385.
This commit is contained in:
parent
a61c0fb0a0
commit
fbe5d4b7db
1 changed files with 7 additions and 0 deletions
|
@ -117,4 +117,11 @@ public class EFSFileStorage extends PlatformObject implements IStorage {
|
|||
return locationURI;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (obj instanceof EFSFileStorage && locationURI != null) {
|
||||
return locationURI.equals(((EFSFileStorage)obj).getLocationURI());
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue