Index: eclipse/samples/Hello/.project
===================================================================
--- eclipse/samples/Hello/.project	(revision 7021)
+++ eclipse/samples/Hello/.project	(working copy)
@@ -10,15 +10,9 @@
 			<arguments>
 			</arguments>
 		</buildCommand>
-		<buildCommand>
-			<name>com.atlassw.tools.eclipse.checkstyle.CheckstyleBuilder</name>
-			<arguments>
-			</arguments>
-		</buildCommand>
 	</buildSpec>
 	<natures>
 		<nature>org.eclipse.jdt.core.javanature</nature>
-		<nature>com.atlassw.tools.eclipse.checkstyle.CheckstyleNature</nature>
 	</natures>
 	<linkedResources>
 		<link>
Index: eclipse/samples/Showcase/.project
===================================================================
--- eclipse/samples/Showcase/.project	(revision 7021)
+++ eclipse/samples/Showcase/.project	(working copy)
@@ -10,15 +10,9 @@
 			<arguments>
 			</arguments>
 		</buildCommand>
-		<buildCommand>
-			<name>com.atlassw.tools.eclipse.checkstyle.CheckstyleBuilder</name>
-			<arguments>
-			</arguments>
-		</buildCommand>
 	</buildSpec>
 	<natures>
 		<nature>org.eclipse.jdt.core.javanature</nature>
-		<nature>com.atlassw.tools.eclipse.checkstyle.CheckstyleNature</nature>
 	</natures>
 	<linkedResources>
 		<link>
Index: eclipse/user/.project
===================================================================
--- eclipse/user/.project	(revision 7021)
+++ eclipse/user/.project	(working copy)
@@ -10,15 +10,9 @@
 			<arguments>
 			</arguments>
 		</buildCommand>
-		<buildCommand>
-			<name>com.atlassw.tools.eclipse.checkstyle.CheckstyleBuilder</name>
-			<arguments>
-			</arguments>
-		</buildCommand>
 	</buildSpec>
 	<natures>
 		<nature>org.eclipse.jdt.core.javanature</nature>
-		<nature>com.atlassw.tools.eclipse.checkstyle.CheckstyleNature</nature>
 	</natures>
 	<linkedResources>
 		<link>
Index: dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java
===================================================================
--- dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java	(revision 7021)
+++ dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java	(working copy)
@@ -212,8 +212,7 @@
       PropertyOracle[] propertyOracles, int permutationId)
       throws UnableToCompleteException {
 
-    int printId = permutationId + 1;
-    logger.log(TreeLogger.INFO, "Compiling permutation " + printId + "...");
+    logger.log(TreeLogger.INFO, "Compiling permutation " + permutationId + "...");
     long permStart = System.currentTimeMillis();
     try {
       if (JProgram.isTracingEnabled()) {
Index: dev/core/src/com/google/gwt/dev/Precompile.java
===================================================================
--- dev/core/src/com/google/gwt/dev/Precompile.java	(revision 7021)
+++ dev/core/src/com/google/gwt/dev/Precompile.java	(working copy)
@@ -411,7 +411,7 @@
       File generatorResourcesDir, File dumpSignatureFile) {
     PropertyPermutations allPermutations = new PropertyPermutations(
         module.getProperties());
-    return precompile(logger, jjsOptions, module, 0, allPermutations, genDir,
+    return precompile(logger, jjsOptions, module, 1, allPermutations, genDir,
         generatorResourcesDir, dumpSignatureFile);
   }
 
@@ -608,7 +608,7 @@
          * the permutations might collapse due to identical rebind results. So
          * we have to track these two counts and ids separately.
          */
-        int actualPermutations = 0;
+        int actualPermutations = 1;
         for (int potentialFirstPerm = 0; potentialFirstPerm < potentialPermutations; potentialFirstPerm += permutationsPerIteration) {
           int numPermsToPrecompile = Math.min(potentialPermutations
               - potentialFirstPerm, permutationsPerIteration);
Index: dev/core/src/com/google/gwt/dev/Precompilation.java
===================================================================
--- dev/core/src/com/google/gwt/dev/Precompilation.java	(revision 7021)
+++ dev/core/src/com/google/gwt/dev/Precompilation.java	(working copy)
@@ -56,7 +56,7 @@
 
     this.unifiedAst = unifiedAst;
     this.permutations = new Permutation[permutations.size()];
-    int i = 0;
+    int i = 1;
     for (Permutation permutation : permutations) {
       this.permutations[i] = new Permutation(i + permutationBase, permutation);
       ++i;
Index: dev/core/src/com/google/gwt/dev/PermutationWorkerFactory.java
===================================================================
--- dev/core/src/com/google/gwt/dev/PermutationWorkerFactory.java	(revision 7021)
+++ dev/core/src/com/google/gwt/dev/PermutationWorkerFactory.java	(working copy)
@@ -249,9 +249,8 @@
     List<Work> work = new ArrayList<Work>(permutations.length);
     for (int i = 0; i < permutations.length; ++i) {
       Permutation perm = permutations[i];
-      int printId = perm.getId() + 1;
       logger.log(TreeLogger.DEBUG, 
-          "Creating worker permutation " + printId + " of " + permutations.length);
+          "Creating worker permutation " + perm.getId() + " of " + permutations.length);
       work.add(new Work(logger, perm, resultFiles.get(i)));
     }
 
