Removing "throwa NamingException" from parseName() methods as was done in r1026157 changed their API,
so that derived classes won't be able to throw that exception anymore.
I do not know the full story behind these two parseName() methods, but if they were supposed be overwritten it seems likely that they may throw a NamingException.
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@
1026506 13f79535-47bb-0310-9956-
ffa450edef68
*
* @return the parsed name
*/
- protected String parseName(String name) {
+ protected String parseName(String name) throws NamingException {
return name;
}
*
* @return the parsed name
*/
- protected Name parseName(Name name) {
+ protected Name parseName(Name name) throws NamingException {
return name;
}