Refactory: remove unused classes, imports, fields and methods.
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / core / util / CharArrayBuffer.java
index 8aecc50..059b4f7 100644 (file)
@@ -73,9 +73,9 @@ public class CharArrayBuffer {
         * @param first -
         *            the first element to be placed in the buffer, ignored if null
         */
-       public CharArrayBuffer(char[] first) {
-               this(first, DEFAULT_BUFFER_SIZE);
-       }
+//     public CharArrayBuffer(char[] first) {
+//             this(first, DEFAULT_BUFFER_SIZE);
+//     }
 
        /**
         * Creates a <code>CharArrayBuffer</code> with the given buffer size, and
@@ -102,9 +102,9 @@ public class CharArrayBuffer {
         * @param size -
         *            the size of the buffer.
         */
-       public CharArrayBuffer(int size) {
-               this(null, size);
-       }
+//     public CharArrayBuffer(int size) {
+//             this(null, size);
+//     }
 
        /**
         * Appends the entire given char array. Given for convenience.