You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by Ravi Kumar <rk...@borland.com> on 2001/10/05 04:25:44 UTC

Emitter: trivial issue with writeDeployTypes (extra quote char)

is
                    pw.println("     <" + namespacePrefix + ":" +
type.getQName().getLocalPart()
                           + "\" className=\"" + type.getJavaName()
+"\">");

should be
                    pw.println("     <" + namespacePrefix + ":" +
type.getQName().getLocalPart()
                           + " className=\"" + type.getJavaName()
+"\">");

                             ^