src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/IfInstruction.java
changeset 55496 8e0ae3830fca
parent 47216 71c04702a3d5
equal deleted inserted replaced
55495:badfa812b82a 55496:8e0ae3830fca
    22 package com.sun.org.apache.bcel.internal.generic;
    22 package com.sun.org.apache.bcel.internal.generic;
    23 
    23 
    24 /**
    24 /**
    25  * Super class for the IFxxx family of instructions.
    25  * Super class for the IFxxx family of instructions.
    26  *
    26  *
    27  * @version $Id: IfInstruction.java 1747278 2016-06-07 17:28:43Z britter $
    27  * @version $Id$
    28  */
    28  */
    29 public abstract class IfInstruction extends BranchInstruction implements StackConsumer {
    29 public abstract class IfInstruction extends BranchInstruction implements StackConsumer {
    30 
    30 
    31     /**
    31     /**
    32      * Empty constructor needed for the Class.newInstance() statement in
    32      * Empty constructor needed for Instruction.readInstruction.
    33      * Instruction.readInstruction(). Not to be used otherwise.
    33      * Not to be used otherwise.
    34      */
    34      */
    35     IfInstruction() {
    35     IfInstruction() {
    36     }
    36     }
    37 
    37 
    38 
    38