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 2015/08/20 11:21:49 UTC

svn commit: r1696735 - /commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/generic/GOTO.java

Author: sebb
Date: Thu Aug 20 09:21:49 2015
New Revision: 1696735

URL: http://svn.apache.org/r1696735
Log:
Javadoc

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

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/generic/GOTO.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/generic/GOTO.java?rev=1696735&r1=1696734&r2=1696735&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/generic/GOTO.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/generic/GOTO.java Thu Aug 20 09:21:49 2015
@@ -57,8 +57,13 @@ public class GOTO extends GotoInstructio
     }
 
 
-    /** Called in pass 2 of InstructionList.setPositions() in order to update
+    /**
+     * Called in pass 2 of InstructionList.setPositions() in order to update
      * the branch target, that may shift due to variable length instructions.
+     *
+     * @param offset additional offset caused by preceding (variable length) instructions
+     * @param max_offset the maximum offset that may be caused by these instructions
+     * @return additional offset caused by possible change of this instruction's length
      */
     @Override
     protected int updatePosition( int offset, int max_offset ) {