1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-30 19:53:30 +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:
Alain Magloire 2004-08-25 13:10:00 +00:00
parent 859019d267
commit eae67a71a4
2 changed files with 8 additions and 2 deletions

View file

@ -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
Fix for Bug 71500: [Indexer] all headers get indexed on project open

View file

@ -346,8 +346,8 @@ public class Util {
public final static boolean isExcluded(IResource resource, char[][] exclusionPatterns) {
IPath path = resource.getFullPath();
// ensure that folders are only excluded if all of their children are excluded
if (resource.getType() == IResource.FOLDER)
path = path.append("*"); //$NON-NLS-1$
//if (resource.getType() == IResource.FOLDER)
// path = path.append("*"); //$NON-NLS-1$
return isExcluded(path, exclusionPatterns);
}