-
Enhancement
-
Resolution: Won't Fix
-
P4
-
None
-
5.0u1
-
generic
-
generic
There are redundancies in the classes com.sun.corba.se.impl.naming.cosnaming.NamingContextImpl and com.sun.corba.se.impl.naming.pcosnaming.NamingContextImpl
The method called nameToString(NameComponent[] name) of the class NamingContextImpl is the same in both packages (osnaming and cosnaming):
public static String nameToString(NameComponent[] name)
{
StringBuffer s = new StringBuffer("{");
if (name != null || name.length > 0) {
for (int i=0;i<name.length;i++) {
if (i>0)
s.append(",");
s.append("[").
append(name[i].id).
append(",").
append(name[i].kind).
append("]");
}
}
s.append("}");
return s.toString();
}
As the method has a bug (see CR 5080874) it must be fixed in both methods. As the method is public static, it should be possible to create common shared code to avoid the need to fix issues in two separate classes.
###@###.### 2005-2-02 12:23:14 GMT
The method called nameToString(NameComponent[] name) of the class NamingContextImpl is the same in both packages (osnaming and cosnaming):
public static String nameToString(NameComponent[] name)
{
StringBuffer s = new StringBuffer("{");
if (name != null || name.length > 0) {
for (int i=0;i<name.length;i++) {
if (i>0)
s.append(",");
s.append("[").
append(name[i].id).
append(",").
append(name[i].kind).
append("]");
}
}
s.append("}");
return s.toString();
}
As the method has a bug (see CR 5080874) it must be fixed in both methods. As the method is public static, it should be possible to create common shared code to avoid the need to fix issues in two separate classes.
###@###.### 2005-2-02 12:23:14 GMT
- relates to
-
JDK-5080874 Invalid Null pointer protection in NamingContextImpl.nameToString
-
- Closed
-