Author: david.lloyd(a)jboss.com
Date: 2009-11-17 18:22:30 -0500 (Tue, 17 Nov 2009)
New Revision: 5598
Modified:
remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/Remoting.java
Log:
Fix compile problem
Modified: remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/Remoting.java
===================================================================
---
remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/Remoting.java 2009-11-17
23:04:16 UTC (rev 5597)
+++
remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/Remoting.java 2009-11-17
23:22:30 UTC (rev 5598)
@@ -141,9 +141,8 @@
}
}
for (String name : found.keySet()) {
- final MarshallerFactory marshallerFactory =
found.get(name).getMarshallerFactory();
try {
-
endpoint.addProtocolService(ProtocolServiceType.MARSHALLER_PROVIDER_DESCRIPTOR, name,
marshallerFactory);
+
endpoint.addProtocolService(ProtocolServiceType.MARSHALLER_PROVIDER_DESCRIPTOR, name,
found.get(name));
} catch (DuplicateRegistrationException e) {
log.debug("Duplicate registration for '" + name +
"' of " + MarshallerFactory.class);
}
Show replies by date