You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by se...@apache.org on 2011/09/01 03:37:19 UTC

svn commit: r1163889 - /httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/impl/nio/reactor/IOReactorConfig.java

Author: sebb
Date: Thu Sep  1 01:37:18 2011
New Revision: 1163889

URL: http://svn.apache.org/viewvc?rev=1163889&view=rev
Log:
Javadoc syntax

Modified:
    httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/impl/nio/reactor/IOReactorConfig.java

Modified: httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/impl/nio/reactor/IOReactorConfig.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/impl/nio/reactor/IOReactorConfig.java?rev=1163889&r1=1163888&r2=1163889&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/impl/nio/reactor/IOReactorConfig.java (original)
+++ httpcomponents/httpcore/trunk/httpcore-nio/src/main/java/org/apache/http/impl/nio/reactor/IOReactorConfig.java Thu Sep  1 01:37:18 2011
@@ -112,9 +112,9 @@ public final class IOReactorConfig imple
      * <p/>
      * Default: <code>false</code>
      *
-     * @see {@link SelectionKey}
-     * @see {@link SelectionKey#interestOps()}
-     * @see {@link SelectionKey#interestOps(int)}
+     * @see SelectionKey
+     * @see SelectionKey#interestOps()
+     * @see SelectionKey#interestOps(int)
      */
     public boolean isInterestOpQueued() {
         return this.interestOpQueued;
@@ -125,9 +125,9 @@ public final class IOReactorConfig imple
      * asynchronously by the I/O reactor thread or to be applied to the underlying
      * {@link SelectionKey} immediately.
      *
-     * @see {@link SelectionKey}
-     * @see {@link SelectionKey#interestOps()}
-     * @see {@link SelectionKey#interestOps(int)}
+     * @see SelectionKey
+     * @see SelectionKey#interestOps()
+     * @see SelectionKey#interestOps(int)
      */
     public void setInterestOpQueued(boolean interestOpQueued) {
         this.interestOpQueued = interestOpQueued;