X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/builder/ClasspathDirectory.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/builder/ClasspathDirectory.java index 86f7d35..901bcd3 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/builder/ClasspathDirectory.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/builder/ClasspathDirectory.java @@ -11,7 +11,6 @@ package net.sourceforge.phpdt.internal.core.builder; import net.sourceforge.phpdt.internal.compiler.env.NameEnvironmentAnswer; -import net.sourceforge.phpdt.internal.core.Util; import net.sourceforge.phpdt.internal.core.util.SimpleLookupTable; import org.eclipse.core.resources.IContainer; @@ -30,9 +29,9 @@ String[] missingPackageHolder = new String[1]; ClasspathDirectory(IContainer binaryFolder, boolean isOutputFolder) { this.binaryFolder = binaryFolder; this.isOutputFolder = isOutputFolder; - IPath location = binaryFolder.getLocation(); - this.binaryLocation = location != null ? location.addTrailingSeparator().toString() : ""; //$NON-NLS-1$ - +// IPath location = binaryFolder.getLocation(); +// this.binaryLocation = location != null ? location.addTrailingSeparator().toString() : ""; //$NON-NLS-1$ + this.binaryLocation = ""; this.directoryCache = new SimpleLookupTable(5); }