--- old/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/CompoundInstruction.java 2017-08-08 16:04:52.080341222 -0700 +++ new/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/CompoundInstruction.java 2017-08-08 16:04:51.996337016 -0700 @@ -21,7 +21,6 @@ package com.sun.org.apache.bcel.internal.generic; - /** * Wrapper class for `compound' operations, virtual instructions that * don't exist as byte code, but give a useful meaning. For example, @@ -33,10 +32,11 @@ * The interface provides the possibilty for the user to write * `templates' or `macros' for such reuseable code patterns. * - * @author M. Dahm + * @version $Id: CompoundInstruction.java 1747278 2016-06-07 17:28:43Z britter $ * @see PUSH * @see SWITCH */ public interface CompoundInstruction { - public InstructionList getInstructionList(); + + InstructionList getInstructionList(); }