< prev index next >

src/jdk.compiler/share/classes/sun/tools/serialver/SerialVer.java

Print this page

        

*** 66,76 **** */ static String serialSyntax(String classname) throws ClassNotFoundException { String ret = null; boolean classFound = false; ! // If using old style of qualifyling inner classes with '$'s. if (classname.indexOf('$') != -1) { ret = resolveClass(classname); } else { /* Try to resolve the fully qualified name and if that fails, start * replacing the '.'s with '$'s starting from the last '.', until --- 66,76 ---- */ static String serialSyntax(String classname) throws ClassNotFoundException { String ret = null; boolean classFound = false; ! // If using old style of qualifying inner classes with '$'s. if (classname.indexOf('$') != -1) { ret = resolveClass(classname); } else { /* Try to resolve the fully qualified name and if that fails, start * replacing the '.'s with '$'s starting from the last '.', until
< prev index next >