]> source.dussan.org Git - aspectj.git/commitdiff
ignore unused return
authoraclement <aclement>
Tue, 26 Aug 2008 15:00:57 +0000 (15:00 +0000)
committeraclement <aclement>
Tue, 26 Aug 2008 15:00:57 +0000 (15:00 +0000)
bcel-builder/src/org/aspectj/apache/bcel/classfile/LocalVariableTable.java

index a85653e76345228ba26e931a5a563f577184a3ba..d6568ba895ed32e70eab998ae748873e4a5d669a 100644 (file)
@@ -61,7 +61,7 @@ import  java.io.*;
  * This class represents collection of local variables in a
  * method. This attribute is contained in the <em>Code</em> attribute.
  *
- * @version $Id: LocalVariableTable.java,v 1.4 2008/05/28 23:53:01 aclement Exp $
+ * @version $Id: LocalVariableTable.java,v 1.5 2008/08/26 15:00:57 aclement Exp $
  * @author  <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A>
  * @see     Code
  * @see LocalVariable
@@ -114,7 +114,7 @@ public class LocalVariableTable extends Attribute {
   {
     super(Constants.ATTR_LOCAL_VARIABLE_TABLE,name_index, length, constant_pool);
     data = new byte[length];
-    int byteReads = file.read(data);
+    file.read(data);
     isInPackedState = true;
     // assert(bytesRead==length)
   }