src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/ConversionInstruction.java
changeset 55496 8e0ae3830fca
parent 47216 71c04702a3d5
equal deleted inserted replaced
55495:badfa812b82a 55496:8e0ae3830fca
    24 import com.sun.org.apache.bcel.internal.Const;
    24 import com.sun.org.apache.bcel.internal.Const;
    25 
    25 
    26 /**
    26 /**
    27  * Super class for the x2y family of instructions.
    27  * Super class for the x2y family of instructions.
    28  *
    28  *
    29  * @version $Id: ConversionInstruction.java 1747278 2016-06-07 17:28:43Z britter $
    29  * @version $Id$
    30  */
    30  */
    31 public abstract class ConversionInstruction extends Instruction implements TypedInstruction,
    31 public abstract class ConversionInstruction extends Instruction implements TypedInstruction,
    32         StackProducer, StackConsumer {
    32         StackProducer, StackConsumer {
    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     ConversionInstruction() {
    38     ConversionInstruction() {
    39     }
    39     }
    40 
    40 
    41 
    41