< prev index next >

src/java.security.jgss/share/classes/sun/security/krb5/Realm.java

Print this page

        

@@ -294,11 +294,11 @@
      *
      * Please note the sRealm IBM.COM does not appear in the path.
      *
      * @param cRealm the initiating realm
      * @param sRealm the target realm, not the same as cRealm
-     * @returns array of realms including at least cRealm as the first
+     * @return array of realms including at least cRealm as the first
      *          element
      * @throws KrbException if the config does not contain a sub-stanza
      *          for cRealm in [capaths] or the sub-stanza does not contain
      *          sRealm as a tag
      */

@@ -345,11 +345,11 @@
      * Build a list of realm that can be traversed
      * to obtain credentials from the initiating realm cRealm
      * for a service in the target realm sRealm.
      * @param cRealm the initiating realm
      * @param sRealm the target realm, not the same as cRealm
-     * @returns array of realms including cRealm as the first element
+     * @return array of realms including cRealm as the first element
      */
     private static String[] parseHierarchy(String cRealm, String sRealm) {
 
         String[] cComponents = cRealm.split("\\.");
         String[] sComponents = sRealm.split("\\.");
< prev index next >