org.apache.xalan.serialize.SerializerUtils
public static boolean isDefinedNSDecl(
SerializationHandler serializer,
int attr,
DTM dtm)does this:
if ((null != uri) && uri.equals(dtm.getStringValue(attr)))
return true;
this part:
uri.equals(dtm.getStringValue(attr))
will always be false, as uri is a String, and getStringValue returns an XMLString
and String won't compare non strings.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
