[jboss-remoting-commits] JBoss Remoting SVN: r3480 - remoting2/branches/2.x/src/main/org/jboss/remoting/marshal/compress.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Fri Feb 22 04:51:58 EST 2008


Author: ron.sigal at jboss.com
Date: 2008-02-22 04:51:58 -0500 (Fri, 22 Feb 2008)
New Revision: 3480

Modified:
   remoting2/branches/2.x/src/main/org/jboss/remoting/marshal/compress/CompressingUnMarshaller.java
Log:
JBREM-900: Eliminated direct reference to customClassLoader.

Modified: remoting2/branches/2.x/src/main/org/jboss/remoting/marshal/compress/CompressingUnMarshaller.java
===================================================================
--- remoting2/branches/2.x/src/main/org/jboss/remoting/marshal/compress/CompressingUnMarshaller.java	2008-02-22 09:50:40 UTC (rev 3479)
+++ remoting2/branches/2.x/src/main/org/jboss/remoting/marshal/compress/CompressingUnMarshaller.java	2008-02-22 09:51:58 UTC (rev 3480)
@@ -105,7 +105,7 @@
       GZIPInputStream gzis = new GZIPInputStream(inputStream);
       BufferedInputStream bis = new BufferedInputStream(gzis);
       SerializationManager manager = SerializationStreamFactory.getManagerInstance(getSerializationType());
-      ObjectInputStream ois =  manager.createInput(bis, customClassLoader);
+      ObjectInputStream ois =  manager.createInput(bis, getClassLoader());
 
       if(wrappedUnMarshaller != null)
       {




More information about the jboss-remoting-commits mailing list