You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by ap...@apache.org on 2009/04/09 10:28:59 UTC

svn commit: r763556 - /mina/trunk/core/src/main/java/org/apache/mina/filter/codec/RecoverableProtocolDecoderException.java

Author: apaliwal
Date: Thu Apr  9 08:28:59 2009
New Revision: 763556

URL: http://svn.apache.org/viewvc?rev=763556&view=rev
Log:
Removed PMD unused import error 
Submitted By: Ashish (apaliwal.at.apache.org)

Modified:
    mina/trunk/core/src/main/java/org/apache/mina/filter/codec/RecoverableProtocolDecoderException.java

Modified: mina/trunk/core/src/main/java/org/apache/mina/filter/codec/RecoverableProtocolDecoderException.java
URL: http://svn.apache.org/viewvc/mina/trunk/core/src/main/java/org/apache/mina/filter/codec/RecoverableProtocolDecoderException.java?rev=763556&r1=763555&r2=763556&view=diff
==============================================================================
--- mina/trunk/core/src/main/java/org/apache/mina/filter/codec/RecoverableProtocolDecoderException.java (original)
+++ mina/trunk/core/src/main/java/org/apache/mina/filter/codec/RecoverableProtocolDecoderException.java Thu Apr  9 08:28:59 2009
@@ -19,16 +19,14 @@
  */
 package org.apache.mina.filter.codec;
 
-import org.apache.mina.core.buffer.IoBuffer;
-import org.apache.mina.core.session.IoSession;
-
 /**
  * A special exception that tells the {@link ProtocolDecoder} can keep
  * decoding even after this exception is thrown.
  * <p>
  * Once {@link ProtocolCodecFilter} catches any other type of exception
  * than {@link RecoverableProtocolDecoderException}, it stops calling
- * the {@link ProtocolDecoder#decode(IoSession, IoBuffer, ProtocolDecoderOutput)}
+ * the {@link ProtocolDecoder#decode(org.apache.mina.core.session.IoSession,
+ *        org.apache.mina.core.buffer.IoBuffer, ProtocolDecoderOutput)}
  * immediately and fires an <tt>exceptionCaught</tt> event.
  * <p>
  * On the other hand, if {@link RecoverableProtocolDecoderException} is thrown,