This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push: new 8aa8fb9f5b Avoid writing namespace prefix 8aa8fb9f5b is described below commit 8aa8fb9f5bcbcdefb34160c4a5f9880b94b9026d Author: remm <r...@apache.org> AuthorDate: Tue Oct 22 11:44:04 2024 +0200 Avoid writing namespace prefix --- java/org/apache/catalina/servlets/TransientPropertiesWebdavServlet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/org/apache/catalina/servlets/TransientPropertiesWebdavServlet.java b/java/org/apache/catalina/servlets/TransientPropertiesWebdavServlet.java index efa02d23cb..b27f974ad4 100644 --- a/java/org/apache/catalina/servlets/TransientPropertiesWebdavServlet.java +++ b/java/org/apache/catalina/servlets/TransientPropertiesWebdavServlet.java @@ -107,7 +107,7 @@ public class TransientPropertiesWebdavServlet extends WebdavServlet { if (nameOnly) { // Add the names of all properties for (Node node : properties) { - generatedXML.writeElement(node.getPrefix(), node.getNamespaceURI(), node.getLocalName(), + generatedXML.writeElement(null, node.getNamespaceURI(), node.getLocalName(), XMLWriter.NO_CONTENT); } } else if (property != null) { --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org