X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/builder/State.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/builder/State.java index f610700..67b551f 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/builder/State.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/builder/State.java @@ -45,7 +45,7 @@ public class State { SimpleLookupTable structuralBuildTimes; - private String[] knownPackageNames; // of the form "p1/p2" + //private String[] knownPackageNames; // of the form "p1/p2" static final byte VERSION = 0x0007; @@ -59,7 +59,7 @@ public class State { } protected State(PHPBuilder javaBuilder) { - this.knownPackageNames = null; + //this.knownPackageNames = null; this.javaProjectName = javaBuilder.currentProject.getName(); this.sourceLocations = javaBuilder.nameEnvironment.sourceLocations; // this.binaryLocations = javaBuilder.nameEnvironment.binaryLocations; @@ -73,7 +73,7 @@ public class State { void copyFrom(State lastState) { // try { - this.knownPackageNames = null; + //this.knownPackageNames = null; this.buildNumber = lastState.buildNumber + 1; this.lastStructuralBuildTime = lastState.lastStructuralBuildTime; // this.references = (SimpleLookupTable) lastState.references.clone();