--- old/make/tools/src/build/tools/jarreorder/JarReorder.java 2013-01-18 01:38:56.713613235 -0500 +++ new/make/tools/src/build/tools/jarreorder/JarReorder.java 2013-01-18 01:38:55.805562629 -0500 @@ -162,8 +162,9 @@ for (int i = orderList.size() - 1; i >= 0; --i) { String s = orderList.get(i); if (allFilesExcluded.contains(s)) { - System.err.println("Included order file " + s - + " is also excluded, skipping."); + // Disable this warning until 8005688 is fixed + // System.err.println("Included order file " + s + // + " is also excluded, skipping."); } else if (new File(s).exists()) { allFiles.add(s); } else {