src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/IF_ICMPEQ.java
changeset 55496 8e0ae3830fca
parent 47216 71c04702a3d5
equal deleted inserted replaced
55495:badfa812b82a 55496:8e0ae3830fca
    24 /**
    24 /**
    25  * IF_ICMPEQ - Branch if int comparison succeeds
    25  * IF_ICMPEQ - Branch if int comparison succeeds
    26  *
    26  *
    27  * <PRE>Stack: ..., value1, value2 -&gt; ...</PRE>
    27  * <PRE>Stack: ..., value1, value2 -&gt; ...</PRE>
    28  *
    28  *
    29  * @version $Id: IF_ICMPEQ.java 1747278 2016-06-07 17:28:43Z britter $
    29  * @version $Id$
    30  */
    30  */
    31 public class IF_ICMPEQ extends IfInstruction {
    31 public class IF_ICMPEQ extends IfInstruction {
    32 
    32 
    33     /**
    33     /**
    34      * Empty constructor needed for the Class.newInstance() statement in
    34      * Empty constructor needed for Instruction.readInstruction.
    35      * Instruction.readInstruction(). Not to be used otherwise.
    35      * Not to be used otherwise.
    36      */
    36      */
    37     IF_ICMPEQ() {
    37     IF_ICMPEQ() {
    38     }
    38     }
    39 
    39 
    40 
    40