launcher/http/src/main/java/org/apidesign/bck2brwsr/launcher/CompileCP.java
branchclosure
changeset 1547 7c10f6d5635c
parent 1525 777bd3ed81ba
child 1552 5a840853d1a8
     1.1 --- a/launcher/http/src/main/java/org/apidesign/bck2brwsr/launcher/CompileCP.java	Mon May 05 10:16:30 2014 +0200
     1.2 +++ b/launcher/http/src/main/java/org/apidesign/bck2brwsr/launcher/CompileCP.java	Wed May 07 11:41:41 2014 +0200
     1.3 @@ -144,9 +144,6 @@
     1.4          while (en.hasMoreElements()) {
     1.5              JarEntry e = en.nextElement();
     1.6              final String n = e.getName();
     1.7 -            if (n.contains("package-info")) {
     1.8 -                continue;
     1.9 -            }
    1.10              if (n.endsWith("/")) {
    1.11                  continue;
    1.12              }
    1.13 @@ -192,9 +189,6 @@
    1.14      private static void listDir(File f, String pref, List<String> classes, List<String> resources) throws IOException {
    1.15          File[] arr = f.listFiles();
    1.16          if (arr == null) {
    1.17 -            if (f.getName().equals("package-info.class")) {
    1.18 -                return;
    1.19 -            }
    1.20              if (f.getName().endsWith(".class")) {
    1.21                  classes.add(pref + f.getName().substring(0, f.getName().length() - 6));
    1.22              } else {