Author: markt
Date: Wed Sep 10 22:42:12 2014
New Revision: 1624163

URL: http://svn.apache.org/r1624163
Log:
Remove unused code.

Modified:
    tomcat/trunk/java/org/apache/tomcat/util/bcel/classfile/ConstantUtf8.java

Modified: 
tomcat/trunk/java/org/apache/tomcat/util/bcel/classfile/ConstantUtf8.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/bcel/classfile/ConstantUtf8.java?rev=1624163&r1=1624162&r2=1624163&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/bcel/classfile/ConstantUtf8.java 
(original)
+++ tomcat/trunk/java/org/apache/tomcat/util/bcel/classfile/ConstantUtf8.java 
Wed Sep 10 22:42:12 2014
@@ -16,7 +16,6 @@
  */
 package org.apache.tomcat.util.bcel.classfile;
 
-import java.io.DataInput;
 import java.io.DataInputStream;
 import java.io.IOException;
 import java.util.HashMap;
@@ -73,17 +72,6 @@ public final class ConstantUtf8 extends 
         return getInstance(file.readUTF());
     }
 
-    /**
-     * Initialize instance from file data.
-     *
-     * @param file Input stream
-     * @throws IOException
-     */
-    ConstantUtf8(DataInput file) throws IOException {
-        super(Constants.CONSTANT_Utf8);
-        bytes = file.readUTF();
-    }
-
 
     /**
      * @param bytes Data



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

Reply via email to