[jbosscache-commits] JBoss Cache SVN: r5599 - core/trunk/src/main/java/org/jboss/cache/marshall.

jbosscache-commits at lists.jboss.org jbosscache-commits at lists.jboss.org
Mon Apr 21 05:43:00 EDT 2008


Author: manik.surtani at jboss.com
Date: 2008-04-21 05:42:59 -0400 (Mon, 21 Apr 2008)
New Revision: 5599

Modified:
   core/trunk/src/main/java/org/jboss/cache/marshall/CommandAwareRpcDispatcher.java
Log:
typo

Modified: core/trunk/src/main/java/org/jboss/cache/marshall/CommandAwareRpcDispatcher.java
===================================================================
--- core/trunk/src/main/java/org/jboss/cache/marshall/CommandAwareRpcDispatcher.java	2008-04-18 22:56:25 UTC (rev 5598)
+++ core/trunk/src/main/java/org/jboss/cache/marshall/CommandAwareRpcDispatcher.java	2008-04-21 09:42:59 UTC (rev 5599)
@@ -1,12 +1,11 @@
 package org.jboss.cache.marshall;
 
+import org.jboss.cache.InvocationContext;
 import org.jboss.cache.commands.CacheCommand;
 import org.jboss.cache.commands.remote.DirectCommand;
-import org.jboss.cache.invocation.CacheInvocationDelegate;
-import org.jboss.cache.invocation.InvocationContextContainer;
-import org.jboss.cache.invocation.InterceptorChain;
 import org.jboss.cache.invocation.CacheLifecycleManager;
-import org.jboss.cache.InvocationContext;
+import org.jboss.cache.invocation.InterceptorChain;
+import org.jboss.cache.invocation.InvocationContextContainer;
 import org.jgroups.Channel;
 import org.jgroups.MembershipListener;
 import org.jgroups.Message;
@@ -84,7 +83,7 @@
 
       if (cmd instanceof DirectCommand)
       {
-         if (trace) log.trace("This is a direct command - so performing directlty and not via the invoker.");
+         if (trace) log.trace("This is a direct command - so performing directly and not via the invoker.");
          DirectCommand dCmd = (DirectCommand) cmd;
          return dCmd.performDirectly();
       }




More information about the jbosscache-commits mailing list