mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-31 04:03:27 +02:00
2004-08-25 Alain Magloire
Workaround for PR 72435, Patch From Bogdan * index/org/eclipse/cdt/internal/core/Util.java
This commit is contained in:
parent
859019d267
commit
eae67a71a4
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2004-08-25 Alain Magloire
|
||||||
|
|
||||||
|
Workaround for PR 72435, Patch From Bogdan
|
||||||
|
|
||||||
|
* index/org/eclipse/cdt/internal/core/Util.java
|
||||||
|
|
||||||
2004-08-19 Bogdan Gheorghe
|
2004-08-19 Bogdan Gheorghe
|
||||||
Fix for Bug 71500: [Indexer] all headers get indexed on project open
|
Fix for Bug 71500: [Indexer] all headers get indexed on project open
|
||||||
|
|
||||||
|
|
|
@ -346,8 +346,8 @@ public class Util {
|
||||||
public final static boolean isExcluded(IResource resource, char[][] exclusionPatterns) {
|
public final static boolean isExcluded(IResource resource, char[][] exclusionPatterns) {
|
||||||
IPath path = resource.getFullPath();
|
IPath path = resource.getFullPath();
|
||||||
// ensure that folders are only excluded if all of their children are excluded
|
// ensure that folders are only excluded if all of their children are excluded
|
||||||
if (resource.getType() == IResource.FOLDER)
|
//if (resource.getType() == IResource.FOLDER)
|
||||||
path = path.append("*"); //$NON-NLS-1$
|
// path = path.append("*"); //$NON-NLS-1$
|
||||||
return isExcluded(path, exclusionPatterns);
|
return isExcluded(path, exclusionPatterns);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue