Author: markt
Date: Tue Feb 19 17:09:35 2013
New Revision: 1447817

URL: http://svn.apache.org/r1447817
Log:
Deprecate prior to reducing visibility

Modified:
    tomcat/trunk/java/org/apache/tomcat/util/buf/B2CConverter.java

Modified: tomcat/trunk/java/org/apache/tomcat/util/buf/B2CConverter.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/buf/B2CConverter.java?rev=1447817&r1=1447816&r2=1447817&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/buf/B2CConverter.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/buf/B2CConverter.java Tue Feb 19 
17:09:35 2013
@@ -90,13 +90,27 @@ public class B2CConverter {
         return charset;
     }
 
+    /**
+     * @deprecated  Will be made private in Tomcat 8.0.x
+     */
+    @Deprecated
     protected CharsetDecoder decoder = null;
+    /**
+     * @deprecated  Will be made private in Tomcat 8.0.x
+     */
+    @Deprecated
     protected ByteBuffer bb = null;
+    /**
+     * @deprecated  Will be made private in Tomcat 8.0.x
+     */
+    @Deprecated
     protected CharBuffer cb = null;
 
     /**
      * Leftover buffer used for incomplete characters.
+     * @deprecated  Will be made private in Tomcat 8.0.x
      */
+    @Deprecated
     protected ByteBuffer leftovers = null;
 
     public B2CConverter(String encoding) throws IOException {



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to