This is an automated email from the ASF dual-hosted git repository.
michaelo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-shared-utils.git
The following commit(s) were added to refs/heads/master by this push:
new 86b9ed0 [MSHARED-986] XmlStreamWriter is pointless (deprecate it)
86b9ed0 is described below
commit 86b9ed07ef337b49ddce26224a2061d2e6e8bb85
Author: Michael Osipov <[email protected]>
AuthorDate: Mon Jul 25 18:45:58 2022 +0200
[MSHARED-986] XmlStreamWriter is pointless (deprecate it)
---
src/main/java/org/apache/maven/shared/utils/xml/XmlStreamWriter.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/src/main/java/org/apache/maven/shared/utils/xml/XmlStreamWriter.java
b/src/main/java/org/apache/maven/shared/utils/xml/XmlStreamWriter.java
index 2923faf..f36dc50 100644
--- a/src/main/java/org/apache/maven/shared/utils/xml/XmlStreamWriter.java
+++ b/src/main/java/org/apache/maven/shared/utils/xml/XmlStreamWriter.java
@@ -24,9 +24,9 @@ import java.io.FileNotFoundException;
import java.io.OutputStream;
/**
- * We just wrap the commons StreamWriter to not get into troubles
- * by exposing shaded commons-io packages
+ * @deprecated use org.apache.commons.io.input.XmlStreamWriter instead
*/
+@Deprecated
public class XmlStreamWriter
extends org.apache.commons.io.output.XmlStreamWriter
{