Author: ron.sigal(a)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)
{
Show replies by date