--- old/src/java.desktop/share/classes/sun/font/ScriptRun.java 2015-05-08 22:11:52.000000000 +0300 +++ new/src/java.desktop/share/classes/sun/font/ScriptRun.java 2015-05-08 22:11:52.000000000 +0300 @@ -138,7 +138,7 @@ * Get the script code for the script of the current script run. * * @return the script code for the script of the current script run. - * @see #Script + * @see Script */ public int getScriptCode() { return scriptCode; @@ -274,7 +274,7 @@ * @param scriptOne one of the script codes. * @param scriptTwo the other script code. * @return true if the two scripts are the same. - * @see com.ibm.icu.lang.Script + * @see Script */ private static boolean sameScript(int scriptOne, int scriptTwo) { return scriptOne == scriptTwo || scriptOne <= Script.INHERITED || scriptTwo <= Script.INHERITED;