make/tools/src/build/tools/jarreorder/JarReorder.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/make/tools/src/build/tools/jarreorder/JarReorder.java	Fri Jan 18 01:38:56 2013
--- new/make/tools/src/build/tools/jarreorder/JarReorder.java	Fri Jan 18 01:38:55 2013

*** 160,171 **** --- 160,172 ---- // Add in REVERSE ORDER, so that the first element is closest to // the end (and the index). 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 { System.err.println("Included order file " + s + " missing, skipping.");

make/tools/src/build/tools/jarreorder/JarReorder.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File