Author: rajdavies Date: Mon Jan 22 21:55:24 2007 New Revision: 498926 URL: http://svn.apache.org/viewvc?view=rev&rev=498926 Log: corrected spelling mistake in raised exception
Modified: incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/transport/WireFormatNegotiator.java Modified: incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/transport/WireFormatNegotiator.java URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/transport/WireFormatNegotiator.java?view=diff&rev=498926&r1=498925&r2=498926 ============================================================================== --- incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/transport/WireFormatNegotiator.java (original) +++ incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/transport/WireFormatNegotiator.java Mon Jan 22 21:55:24 2007 @@ -85,7 +85,7 @@ public void oneway(Object command) throws IOException { try { if( !readyCountDownLatch.await(negotiateTimeout, TimeUnit.MILLISECONDS) ) - throw new IOException("Wire format negociation timeout: peer did not send his wire format."); + throw new IOException("Wire format negotiation timeout: peer did not send his wire format."); } catch (InterruptedException e) { Thread.currentThread().interrupt(); throw new InterruptedIOException();