View | Details | Raw Unified | Return to bug 269985 | Differences between
and this patch

Collapse All | Expand All

(-)model/org/eclipse/jdt/internal/core/builder/ClasspathDirectory.java (-1 / +1 lines)
Lines 33-39 Link Here
33
33
34
ClasspathDirectory(IContainer binaryFolder, boolean isOutputFolder, AccessRuleSet accessRuleSet) {
34
ClasspathDirectory(IContainer binaryFolder, boolean isOutputFolder, AccessRuleSet accessRuleSet) {
35
	this.binaryFolder = binaryFolder;
35
	this.binaryFolder = binaryFolder;
36
	this.isOutputFolder = isOutputFolder;
36
	this.isOutputFolder = isOutputFolder || binaryFolder.getProjectRelativePath().isEmpty(); // if binaryFolder == project, then treat it as an outputFolder
37
	this.directoryCache = new SimpleLookupTable(5);
37
	this.directoryCache = new SimpleLookupTable(5);
38
	this.accessRuleSet = accessRuleSet;
38
	this.accessRuleSet = accessRuleSet;
39
}
39
}

Return to bug 269985