rt/vm/src/main/java/org/apidesign/vm4brwsr/Bck2Brwsr.java
changeset 1359 5d93ca1561c3
parent 874 2bcbe348dbec
child 1365 4393b7db103b
     1.1 --- a/rt/vm/src/main/java/org/apidesign/vm4brwsr/Bck2Brwsr.java	Fri Mar 22 14:46:10 2013 +0100
     1.2 +++ b/rt/vm/src/main/java/org/apidesign/vm4brwsr/Bck2Brwsr.java	Wed Oct 09 22:02:34 2013 +0200
     1.3 @@ -151,7 +151,7 @@
     1.4       * @since 0.5
     1.5       */
     1.6      public Bck2Brwsr resources(final ClassLoader loader) {
     1.7 -        return resources(new LdrRsrcs(loader));
     1.8 +        return resources(new LdrRsrcs(loader, false));
     1.9      }
    1.10      
    1.11      /** Generates virtual machine based on previous configuration of the 
    1.12 @@ -161,7 +161,7 @@
    1.13       * @since 0.5
    1.14       */
    1.15      public void generate(Appendable out) throws IOException {
    1.16 -        Resources r = res != null ? res : new LdrRsrcs(Bck2Brwsr.class.getClassLoader());
    1.17 +        Resources r = res != null ? res : new LdrRsrcs(Bck2Brwsr.class.getClassLoader(), false);
    1.18          if (level != ObfuscationLevel.NONE) {
    1.19              try {
    1.20                  ClosureWrapper.produceTo(out, level, r, classes);