You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by tr...@apache.org on 2005/04/15 09:42:42 UTC

svn commit: r161421 - directory/network/trunk/src/java/org/apache/mina/protocol/ProtocolDecoder.java

Author: trustin
Date: Fri Apr 15 00:42:41 2005
New Revision: 161421

URL: http://svn.apache.org/viewcvs?view=rev&rev=161421
Log:
Fixed JavaDoc syntax.

Modified:
    directory/network/trunk/src/java/org/apache/mina/protocol/ProtocolDecoder.java

Modified: directory/network/trunk/src/java/org/apache/mina/protocol/ProtocolDecoder.java
URL: http://svn.apache.org/viewcvs/directory/network/trunk/src/java/org/apache/mina/protocol/ProtocolDecoder.java?view=diff&r1=161420&r2=161421
==============================================================================
--- directory/network/trunk/src/java/org/apache/mina/protocol/ProtocolDecoder.java (original)
+++ directory/network/trunk/src/java/org/apache/mina/protocol/ProtocolDecoder.java Fri Apr 15 00:42:41 2005
@@ -37,7 +37,7 @@
 public interface ProtocolDecoder
 {
     /**
-     * Decodes binary or protocol-specific into higher-level message objects.
+     * Decodes binary or protocol-specific content into higher-level message objects.
      * MINA invokes {@link #decode(ProtocolSession, ByteBuffer, ProtocolDecoderOutput)}
      * method with read data, and then the decoder implementation puts decoded
      * messages into {@link ProtocolDecoderOutput}.
@@ -46,5 +46,5 @@
      *                                    specification 
      */
     void decode( ProtocolSession session, ByteBuffer in,
-                ProtocolDecoderOutput out ) throws ProtocolViolationException;
+                 ProtocolDecoderOutput out ) throws ProtocolViolationException;
 }