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

make/tools/src/build/tools/jarreorder/JarReorder.java

Print this page

        

*** 160,171 **** // 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."); } else if (new File(s).exists()) { allFiles.add(s); } else { System.err.println("Included order file " + s + " missing, skipping."); --- 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)) { ! // 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