< prev index next >

src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/DUP_X2.java

Print this page

        

@@ -19,20 +19,20 @@
  * limitations under the License.
  */
 
 package com.sun.org.apache.bcel.internal.generic;
 
-
 /**
  * DUP_X2 - Duplicate top operand stack word and put three down
  * <PRE>Stack: ..., word3, word2, word1 -&gt; ..., word1, word3, word2, word1</PRE>
  *
- * @author  <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A>
+ * @version $Id: DUP_X2.java 1747278 2016-06-07 17:28:43Z britter $
  */
 public class DUP_X2 extends StackInstruction {
+
   public DUP_X2() {
-    super(com.sun.org.apache.bcel.internal.Constants.DUP_X2);
+        super(com.sun.org.apache.bcel.internal.Const.DUP_X2);
   }
 
 
   /**
    * Call corresponding visitor method(s). The order is:

@@ -40,10 +40,11 @@
    * call methods according to the class hierarchy in descending order,
    * i.e., the most specific visitXXX() call comes last.
    *
    * @param v Visitor object
    */
-  public void accept(Visitor v) {
+    @Override
+    public void accept( final Visitor v ) {
     v.visitStackInstruction(this);
     v.visitDUP_X2(this);
   }
 }
< prev index next >