Re: [cp-patches] FYI: fix for ConfigFileParser

2006-06-11 Thread Tom Tromey
> "Raif" == Raif S Naffah <[EMAIL PROTECTED]> writes: Raif> String t = tokens[i]; Raif> -if (Character.isJavaIdentifierStart(cn.toCharArray()[0])) Raif> - abort(""); Raif> +if (! Character.isJavaIdentifierStart(t.toCharArray()[0])) Raif> + abort("Clas

[cp-patches] FYI: fix for ConfigFileParser

2006-06-10 Thread Raif S. Naffah
hello all, the attached patch --already committed-- fixes a bug in the above. the TestOfConfigurationParser Mauve test (in gnu.testlet.javax.security.auth.login) should now pass. 2006-06-11 Raif S. Naffah <[EMAIL PROTECTED]> * gnu/javax/security/auth/login/ConfigFileParser.java (valid