dblevins    2005/08/15 21:05:03

  Modified:    modules/core/src/java/org/openejb/util SafeToolkit.java
  Log:

  Don't use SafeToolkit for loading EJB classes.  Construct a new classloader, 
use that and throw it away.
  Reworked container building to do this.
  
  Revision  Changes    Path
  1.6       +2 -2      
openejb1/modules/core/src/java/org/openejb/util/SafeToolkit.java
  
  Index: SafeToolkit.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/util/SafeToolkit.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SafeToolkit.java  12 Aug 2005 05:56:37 -0000      1.5
  +++ SafeToolkit.java  16 Aug 2005 01:05:03 -0000      1.6
  @@ -54,7 +54,7 @@
   
       private String systemLocation;
       public static final Messages messages = new 
Messages("org.openejb.util.resources");
  -    protected static final HashMap codebases = new HashMap();
  +    public static final HashMap codebases = new HashMap();
       protected static final HashMap _tempcodebases = new HashMap();
   
       /**
  
  
  

Reply via email to