Changeset 14

Show
Ignore:
Timestamp:
07/22/05 11:18:03 (3 years ago)
Author:
niels
Message:

extensions now get the same classloader, than the reader

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/net/schst/XJConf/XmlReader.java

    r13 r14  
    117117        Extension ext; 
    118118        try { 
    119             Class c = Class.forName(name); 
     119            Class c = Class.forName(name,true,this.loader); 
    120120            ext = (Extension)c.newInstance(); 
    121121        } catch (Exception e) {