Author: manik.surtani(a)jboss.com
Date: 2008-05-29 08:35:27 -0400 (Thu, 29 May 2008)
New Revision: 5911
Modified:
core/trunk/src/test/java/org/jboss/cache/util/internals/ReplicationListener.java
Log:
Fixed typos
Modified:
core/trunk/src/test/java/org/jboss/cache/util/internals/ReplicationListener.java
===================================================================
---
core/trunk/src/test/java/org/jboss/cache/util/internals/ReplicationListener.java 2008-05-29
12:20:13 UTC (rev 5910)
+++
core/trunk/src/test/java/org/jboss/cache/util/internals/ReplicationListener.java 2008-05-29
12:35:27 UTC (rev 5911)
@@ -58,9 +58,9 @@
{
RpcDispatcher.Marshaller marshaller;
- private MarshallerDelegate(RpcDispatcher.Marshaller maeshaller)
+ private MarshallerDelegate(RpcDispatcher.Marshaller marshaller)
{
- this.marshaller = maeshaller;
+ this.marshaller = marshaller;
}
public byte[] objectToByteBuffer(Object obj) throws Exception
@@ -68,9 +68,9 @@
return marshaller.objectToByteBuffer(obj);
}
- public Object objectFromByteBuffer(byte abyte0[]) throws Exception
+ public Object objectFromByteBuffer(byte bytes[]) throws Exception
{
- Object result = marshaller.objectFromByteBuffer(abyte0);
+ Object result = marshaller.objectFromByteBuffer(bytes);
System.out.println("Received result = " + result);
if (result instanceof ReplicateCommand && expectedCommands != null)
{
Show replies by date