You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2008/10/21 14:45:29 UTC

svn commit: r706608 - /servicemix/smx4/nmr/trunk/jbi/runtime/src/main/java/org/apache/servicemix/jbi/runtime/impl/DeliveryChannelImpl.java

Author: gnodet
Date: Tue Oct 21 05:45:29 2008
New Revision: 706608

URL: http://svn.apache.org/viewvc?rev=706608&view=rev
Log:
Fix typo

Modified:
    servicemix/smx4/nmr/trunk/jbi/runtime/src/main/java/org/apache/servicemix/jbi/runtime/impl/DeliveryChannelImpl.java

Modified: servicemix/smx4/nmr/trunk/jbi/runtime/src/main/java/org/apache/servicemix/jbi/runtime/impl/DeliveryChannelImpl.java
URL: http://svn.apache.org/viewvc/servicemix/smx4/nmr/trunk/jbi/runtime/src/main/java/org/apache/servicemix/jbi/runtime/impl/DeliveryChannelImpl.java?rev=706608&r1=706607&r2=706608&view=diff
==============================================================================
--- servicemix/smx4/nmr/trunk/jbi/runtime/src/main/java/org/apache/servicemix/jbi/runtime/impl/DeliveryChannelImpl.java (original)
+++ servicemix/smx4/nmr/trunk/jbi/runtime/src/main/java/org/apache/servicemix/jbi/runtime/impl/DeliveryChannelImpl.java Tue Oct 21 05:45:29 2008
@@ -143,7 +143,7 @@
                 } else if (exchange.getPattern() == Pattern.RobustInOnly) {
                     me = new RobustInOnlyImpl(exchange);
                 } else {
-                    throw new IllegalStateException("Unkown pattern: " + exchange.getPattern());
+                    throw new IllegalStateException("Unknown pattern: " + exchange.getPattern());
                 }
                 exchange.setProperty(MessageExchange.class, me);
             }