mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 09:25:31 +02:00
Bug 317783 Resource filters don't appear to work -- work-around for platform issue in 3.6
This commit is contained in:
parent
a212d0d42f
commit
7cecc9e5a9
1 changed files with 3 additions and 1 deletions
|
@ -204,7 +204,9 @@ public class ResourceChangeHandler extends ResourceChangeHandlerBase implements
|
|||
|
||||
// Bug 311189 -- if the resource still exists now, don't treat as a remove!
|
||||
if (to == null) {
|
||||
from.refreshLocal(IResource.DEPTH_ZERO, null);
|
||||
// Workaround for platform Bug 317783
|
||||
if (from.getWorkspace().validateFiltered(from).isOK())
|
||||
from.refreshLocal(IResource.DEPTH_ZERO, null);
|
||||
if (from.exists())
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue