1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 10:16:03 +02:00

Typo in the argument

This commit is contained in:
Alain Magloire 2004-04-30 14:17:46 +00:00
parent 432ae76aa5
commit f02c40bf6a

View file

@ -530,8 +530,8 @@ public class CoreModel {
* exclusion patterns in the resource if a container
* @return IIincludeEntry
*/
public static IIncludeEntry newIncludeEntry(IPath resourcePath, IPath basePath, IPath includePath, boolean isSystemInclude, IPath[] exclusionPathterns) {
return newIncludeEntry(resourcePath, basePath, includePath, isSystemInclude, exclusionPathterns, false);
public static IIncludeEntry newIncludeEntry(IPath resourcePath, IPath basePath, IPath includePath, boolean isSystemInclude, IPath[] exclusionPatterns) {
return newIncludeEntry(resourcePath, basePath, includePath, isSystemInclude, exclusionPatterns, false);
}
/**