You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2021/07/07 09:44:27 UTC

[myfaces-tobago] branch master updated: refactor: remove deprecated constructor

This is an automated email from the ASF dual-hosted git repository.

lofwyr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git


The following commit(s) were added to refs/heads/master by this push:
     new e376db2  refactor: remove deprecated constructor
e376db2 is described below

commit e376db2bb13525343690f13cc0e00fce140a8484
Author: Udo Schnurpfeil <ud...@irian.eu>
AuthorDate: Wed Jul 7 11:43:29 2021 +0200

    refactor: remove deprecated constructor
---
 .../apache/myfaces/tobago/internal/webapp/XmlResponseWriter.java | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/webapp/XmlResponseWriter.java b/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/webapp/XmlResponseWriter.java
index 5b342d4..0612997 100644
--- a/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/webapp/XmlResponseWriter.java
+++ b/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/webapp/XmlResponseWriter.java
@@ -32,15 +32,6 @@ public final class XmlResponseWriter extends TobagoResponseWriterBase {
 
   private final WriterHelper helper;
 
-  /**
-   * @deprecated since 4.3.0
-   */
-  @Deprecated
-  public XmlResponseWriter(
-      final Writer writer, final String contentType, final String characterEncoding) {
-    this(writer, contentType, Charset.forName(characterEncoding));
-  }
-
   public XmlResponseWriter(
       final Writer writer, final String contentType, final Charset charset) {
     super(writer, contentType, charset);