< prev index next >

src/java.base/share/classes/sun/net/www/protocol/http/NegotiateAuthentication.java

Print this page

        

@@ -189,11 +189,11 @@
         }
     }
 
     /**
      * return the first token.
-     * @returns the token
+     * @return the token
      * @throws IOException if <code>Negotiator.getNegotiator()</code> or
      *                     <code>Negotiator.firstToken()</code> failed.
      */
     private byte[] firstToken() throws IOException {
         negotiator = null;

@@ -217,11 +217,11 @@
     }
 
     /**
      * return more tokens
      * @param token the token to be fed into <code>negotiator.nextToken()</code>
-     * @returns the token
+     * @return the token
      * @throws IOException if <code>negotiator.nextToken()</code> throws Exception.
      *  May happen if the input token is invalid.
      */
     private byte[] nextToken(byte[] token) throws IOException {
         return negotiator.nextToken(token);
< prev index next >