< prev index next >

src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/util/MarkerInstruction.java

Print this page

        

@@ -1,8 +1,7 @@
 /*
- * reserved comment block
- * DO NOT REMOVE OR ALTER!
+ * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
  */
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.

@@ -22,11 +21,11 @@
 
 package com.sun.org.apache.xalan.internal.xsltc.compiler.util;
 import java.io.DataOutputStream;
 import java.io.IOException;
 
-import com.sun.org.apache.bcel.internal.Constants;
+import com.sun.org.apache.bcel.internal.Const;
 import com.sun.org.apache.bcel.internal.generic.ConstantPoolGen;
 import com.sun.org.apache.bcel.internal.generic.Instruction;
 import com.sun.org.apache.bcel.internal.generic.Visitor;
 
 /**

@@ -41,11 +40,11 @@
      * Zero-argument constructor.  Sets the opcode to an invalid value and
      * sets the length to zero, as it will not be written as part of the
      * generated byte code.
      */
     public MarkerInstruction() {
-        super(Constants.UNDEFINED, (short) 0);
+        super(Const.UNDEFINED, (short) 0);
     }
 
     /**
      * {@link com.sun.org.apache.bcel.internal.generic.Visitor}s will know nothing about this
      * kind of {@link org.apche.bcel.generic.Instruction}, so this method does
< prev index next >