]> source.dussan.org Git - aspectj.git/commitdiff
removed com.sun references, even though they were only referenced from Javadoc
authoraclement <aclement>
Tue, 5 Apr 2011 15:15:33 +0000 (15:15 +0000)
committeraclement <aclement>
Tue, 5 Apr 2011 15:15:33 +0000 (15:15 +0000)
bcel-builder/src/org/aspectj/apache/bcel/generic/Instruction.java
bcel-builder/src/org/aspectj/apache/bcel/generic/LOOKUPSWITCH.java

index ffdf6305119ecb99b3b56b5e697c44aa85acde6f..e610253ac6a50bdd9bf27b3a91eb8ce227da8b11 100644 (file)
@@ -62,12 +62,10 @@ import org.aspectj.apache.bcel.Constants;
 import org.aspectj.apache.bcel.classfile.ConstantPool;
 import org.aspectj.apache.bcel.util.ByteSequence;
 
-import com.sun.org.apache.bcel.internal.generic.BranchInstruction;
-
 /**
  * Abstract super class for all Java byte codes.
  * 
- * @version $Id: Instruction.java,v 1.9 2009/10/05 17:35:36 aclement Exp $
+ * @version $Id: Instruction.java,v 1.10 2011/04/05 15:15:33 aclement Exp $
  * @author <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A>
  */
 public class Instruction implements Cloneable, Serializable, Constants {
@@ -86,10 +84,9 @@ public class Instruction implements Cloneable, Serializable, Constants {
        }
 
        /**
-        * Use with caution, since `BranchInstruction's have a `target' reference which is not copied correctly (only basic types are).
-        * This also applies for `Select' instructions with their multiple branch targets.
+        * Use with caution, since 'BranchInstruction's have a 'target' reference which is not copied correctly (only basic types are).
+        * This also applies for 'Select' instructions with their multiple branch targets.
         * 
-        * @see BranchInstruction
         * @return (shallow) copy of an instruction
         */
        // GET RID OF THIS - make it throw an exception and track the callers
@@ -158,8 +155,8 @@ public class Instruction implements Cloneable, Serializable, Constants {
                                obj = new InstructionLV(opcode, wide ? bytes.readUnsignedShort() : bytes.readUnsignedByte());
                                break;
                        case Constants.IINC:
-                               obj = new IINC(wide ? bytes.readUnsignedShort() : bytes.readUnsignedByte(), wide ? bytes.readShort() : bytes
-                                               .readByte(), wide);
+                               obj = new IINC(wide ? bytes.readUnsignedShort() : bytes.readUnsignedByte(), wide ? bytes.readShort()
+                                               : bytes.readByte(), wide);
                                break;
                        case Constants.IFNULL:
                        case Constants.IFNONNULL:
index b04921ddb69cd08026b7e5eaa60020278c03af0c..c8ebcba4c4370f8994cd8678f519d9f83997ed9c 100644 (file)
@@ -59,14 +59,11 @@ import java.io.IOException;
 import org.aspectj.apache.bcel.Constants;
 import org.aspectj.apache.bcel.util.ByteSequence;
 
-import com.sun.org.apache.bcel.internal.generic.SWITCH;
-
 /**
  * LOOKUPSWITCH - Switch with unordered set of values
  * 
- * @version $Id: LOOKUPSWITCH.java,v 1.4 2008/08/28 00:05:29 aclement Exp $
+ * @version $Id: LOOKUPSWITCH.java,v 1.5 2011/04/05 15:15:33 aclement Exp $
  * @author <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A>
- * @see SWITCH
  */
 public class LOOKUPSWITCH extends InstructionSelect {