--- old/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/TypedInstruction.java 2017-08-08 16:06:09.316208251 -0700 +++ new/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/TypedInstruction.java 2017-08-08 16:06:09.232204044 -0700 @@ -21,13 +21,13 @@ package com.sun.org.apache.bcel.internal.generic; - /** * Get the type associated with an instruction, int for ILOAD, or the type * of the field of a PUTFIELD instruction, e.g.. * - * @author M. Dahm + * @version $Id: TypedInstruction.java 1747278 2016-06-07 17:28:43Z britter $ */ public interface TypedInstruction { - public Type getType(ConstantPoolGen cpg); + + Type getType( ConstantPoolGen cpg ); }