You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2012/12/07 12:39:20 UTC

svn commit: r1418284 - /commons/proper/bcel/trunk/src/main/java/org/apache/bcel/generic/Instruction.java

Author: sebb
Date: Fri Dec  7 11:39:20 2012
New Revision: 1418284

URL: http://svn.apache.org/viewvc?rev=1418284&view=rev
Log:
Avoid compiler warning

Modified:
    commons/proper/bcel/trunk/src/main/java/org/apache/bcel/generic/Instruction.java

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/bcel/generic/Instruction.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/bcel/generic/Instruction.java?rev=1418284&r1=1418283&r2=1418284&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/bcel/generic/Instruction.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/bcel/generic/Instruction.java Fri Dec  7 11:39:20 2012
@@ -132,6 +132,7 @@ public abstract class Instruction implem
      *
      * @param bytes byte sequence to read from
      * @param wide "wide" instruction flag
+     * @throws IOException may be thrown if the implementation needs to read data from the file
      */
     protected void initFromFile( ByteSequence bytes, boolean wide ) throws IOException {
     }