src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/GOTO.java
changeset 55496 8e0ae3830fca
parent 47216 71c04702a3d5
equal deleted inserted replaced
55495:badfa812b82a 55496:8e0ae3830fca
    25 import java.io.IOException;
    25 import java.io.IOException;
    26 
    26 
    27 /**
    27 /**
    28  * GOTO - Branch always (to relative offset, not absolute address)
    28  * GOTO - Branch always (to relative offset, not absolute address)
    29  *
    29  *
    30  * @version $Id: GOTO.java 1749603 2016-06-21 20:50:19Z ggregory $
    30  * @version $Id$
    31  */
    31  */
    32 public class GOTO extends GotoInstruction implements VariableLengthInstruction {
    32 public class GOTO extends GotoInstruction implements VariableLengthInstruction {
    33 
    33 
    34     /**
    34     /**
    35      * Empty constructor needed for the Class.newInstance() statement in
    35      * Empty constructor needed for Instruction.readInstruction.
    36      * Instruction.readInstruction(). Not to be used otherwise.
    36      * Not to be used otherwise.
    37      */
    37      */
    38     GOTO() {
    38     GOTO() {
    39     }
    39     }
    40 
    40 
    41 
    41