Fix class naming. See #324
This commit is contained in:
parent
1bc52cbd8c
commit
cc97380170
@ -27,19 +27,19 @@ import org.jboss.netty.channel.Channel;
|
||||
*
|
||||
*
|
||||
*/
|
||||
public class ThreadLocalUnmarshallingProvider implements UnmarshallerProvider {
|
||||
public class ThreadLocalUnmarshallerProvider implements UnmarshallerProvider {
|
||||
private final ThreadLocal<Unmarshaller> unmarshallers = new ThreadLocal<Unmarshaller>();
|
||||
|
||||
private final MarshallerFactory factory;
|
||||
private final MarshallingConfiguration config;
|
||||
|
||||
/**
|
||||
* Create a new instance of the {@link ThreadLocalUnmarshallingProvider}
|
||||
* Create a new instance of the {@link ThreadLocalUnmarshallerProvider}
|
||||
*
|
||||
* @param factory the {@link MarshallerFactory} to use to create {@link Unmarshaller}'s if needed
|
||||
* @param config the {@link MarshallingConfiguration} to use
|
||||
*/
|
||||
public ThreadLocalUnmarshallingProvider(MarshallerFactory factory, MarshallingConfiguration config) {
|
||||
public ThreadLocalUnmarshallerProvider(MarshallerFactory factory, MarshallingConfiguration config) {
|
||||
this.factory = factory;
|
||||
this.config = config;
|
||||
}
|
@ -22,7 +22,7 @@ public class RiverThreadLocalCompatibleMarshallingDecoderTest extends RiverCompa
|
||||
|
||||
@Override
|
||||
protected UnmarshallerProvider createProvider(MarshallerFactory factory, MarshallingConfiguration config) {
|
||||
return new ThreadLocalUnmarshallingProvider(factory, config);
|
||||
return new ThreadLocalUnmarshallerProvider(factory, config);
|
||||
}
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@ public class SerialThreadLocalCompatibleMarshallingDecoderTest extends SerialCom
|
||||
|
||||
@Override
|
||||
protected UnmarshallerProvider createProvider(MarshallerFactory factory, MarshallingConfiguration config) {
|
||||
return new ThreadLocalUnmarshallingProvider(factory, config);
|
||||
return new ThreadLocalUnmarshallerProvider(factory, config);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user