Browse Source

Globally replace "http:" by "https:" in non-XML files

Maybe, the XML files and Maven wrapper files will follow. First, let us
find out if this breaks the build, maybe some tests are asserting on
"http:". But there, the replacement would also have taken place, so
probably it just works.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
tags/V1_9_21_2
Alexander Kriegisch 2 months ago
parent
commit
cbdbba0ab0
100 changed files with 217 additions and 219 deletions
  1. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/Constants.java
  2. 3
    3
      bcel-builder/src/main/java/org/aspectj/apache/bcel/ConstantsInitializer.java
  3. 3
    3
      bcel-builder/src/main/java/org/aspectj/apache/bcel/ExceptionConstants.java
  4. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/Repository.java
  5. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Attribute.java
  6. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/BootstrapMethods.java
  7. 2
    3
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ClassFormatException.java
  8. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ClassParser.java
  9. 3
    3
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ClassVisitor.java
  10. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Code.java
  11. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/CodeException.java
  12. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Constant.java
  13. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantCP.java
  14. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantClass.java
  15. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantDouble.java
  16. 3
    3
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantDynamic.java
  17. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantFieldref.java
  18. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantFloat.java
  19. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantInteger.java
  20. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantInterfaceMethodref.java
  21. 3
    3
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantInvokeDynamic.java
  22. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantLong.java
  23. 3
    3
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantMethodHandle.java
  24. 3
    3
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantMethodType.java
  25. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantMethodref.java
  26. 3
    3
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantModule.java
  27. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantNameAndType.java
  28. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantObject.java
  29. 3
    3
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantPackage.java
  30. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantPool.java
  31. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantString.java
  32. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantUtf8.java
  33. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantValue.java
  34. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Deprecated.java
  35. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ExceptionTable.java
  36. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Field.java
  37. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/FieldOrMethod.java
  38. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/InnerClass.java
  39. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/InnerClasses.java
  40. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/JavaClass.java
  41. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/LineNumber.java
  42. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/LineNumberTable.java
  43. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/LocalVariable.java
  44. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/LocalVariableTable.java
  45. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Method.java
  46. 1
    1
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/MethodParameters.java
  47. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Modifiers.java
  48. 5
    5
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Module.java
  49. 3
    3
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ModuleMainClass.java
  50. 3
    3
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ModulePackages.java
  51. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/NestHost.java
  52. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/NestMembers.java
  53. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Node.java
  54. 3
    3
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Signature.java
  55. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/SimpleConstant.java
  56. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/SourceFile.java
  57. 4
    4
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/StackMap.java
  58. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/StackMapEntry.java
  59. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/StackMapType.java
  60. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Synthetic.java
  61. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Unknown.java
  62. 3
    3
      bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Utility.java
  63. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/ArrayType.java
  64. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/BasicType.java
  65. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/BranchHandle.java
  66. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/ClassGen.java
  67. 2
    3
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/ClassGenException.java
  68. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/CodeExceptionGen.java
  69. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/FieldGen.java
  70. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/FieldGenOrMethodGen.java
  71. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/FieldInstruction.java
  72. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/FieldOrMethod.java
  73. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/IINC.java
  74. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/INVOKEINTERFACE.java
  75. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstVisitor.java
  76. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/Instruction.java
  77. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionBranch.java
  78. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionByte.java
  79. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionCP.java
  80. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionConstants.java
  81. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionFactory.java
  82. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionHandle.java
  83. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionLV.java
  84. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionList.java
  85. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionSelect.java
  86. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionShort.java
  87. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionTargeter.java
  88. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InvokeDynamic.java
  89. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InvokeInstruction.java
  90. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/LOOKUPSWITCH.java
  91. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/LineNumberGen.java
  92. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/LocalVariableGen.java
  93. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/MULTIANEWARRAY.java
  94. 3
    3
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/MethodGen.java
  95. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/ObjectType.java
  96. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/RET.java
  97. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/ReferenceType.java
  98. 3
    3
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/ReturnaddressType.java
  99. 2
    2
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/SwitchBuilder.java
  100. 0
    0
      bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/TABLESWITCH.java

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/Constants.java View File

@@ -23,7 +23,7 @@ import org.aspectj.apache.bcel.generic.Type;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -53,7 +53,7 @@ import org.aspectj.apache.bcel.generic.Type;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

/**

+ 3
- 3
bcel-builder/src/main/java/org/aspectj/apache/bcel/ConstantsInitializer.java View File

@@ -19,7 +19,7 @@
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -49,7 +49,7 @@
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
package org.aspectj.apache.bcel;

@@ -394,4 +394,4 @@ public class ConstantsInitializer {
}
return null;
}
}
}

+ 3
- 3
bcel-builder/src/main/java/org/aspectj/apache/bcel/ExceptionConstants.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,14 +51,14 @@ package org.aspectj.apache.bcel;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

/**
* Exception constants.
*
* @version $Id: ExceptionConstants.java,v 1.5 2009/09/14 20:29:10 aclement Exp $
* @author <A HREF="http://www.inf.fu-berlin.de/~ehaase">E. Haase</A>
* @author <A HREF="https://www.inf.fu-berlin.de/~ehaase">E. Haase</A>
*/
@SuppressWarnings("rawtypes")
public interface ExceptionConstants {

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/Repository.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.IOException;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Attribute.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/BootstrapMethods.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.ByteArrayInputStream;

+ 2
- 3
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ClassFormatException.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

/**
@@ -66,4 +66,3 @@ public class ClassFormatException extends RuntimeException {
public ClassFormatException() { super(); }
public ClassFormatException(String s) { super(s); }
}


+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ClassParser.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.BufferedInputStream;

+ 3
- 3
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ClassVisitor.java View File

@@ -28,7 +28,7 @@ import org.aspectj.apache.bcel.classfile.annotation.RuntimeVisTypeAnnos;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -58,14 +58,14 @@ import org.aspectj.apache.bcel.classfile.annotation.RuntimeVisTypeAnnos;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

/**
* Interface to make use of the Visitor pattern programming style. I.e. a class that implements this interface can traverse the
* contents of a Java class just by calling the `accept' method which all classes have.
*
* Implemented by wish of <A HREF="http://www.inf.fu-berlin.de/~bokowski">Boris Bokowski</A>.
* Implemented by wish of <A HREF="https://www.inf.fu-berlin.de/~bokowski">Boris Bokowski</A>.
*
* @version $Id: ClassVisitor.java,v 1.4 2009/09/15 19:40:13 aclement Exp $
* @author <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A>

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Code.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/CodeException.java View File

@@ -26,7 +26,7 @@ import java.io.Serializable;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -56,7 +56,7 @@ import java.io.Serializable;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import org.aspectj.apache.bcel.Constants;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Constant.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantCP.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
import java.io.DataInputStream;
import java.io.DataOutputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantClass.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantDouble.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 3
- 3
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantDynamic.java View File

@@ -19,7 +19,7 @@
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -49,7 +49,7 @@
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
package org.aspectj.apache.bcel.classfile;

@@ -64,7 +64,7 @@ import org.aspectj.apache.bcel.Constants;
* This class is derived from the abstract <A HREF="org.aspectj.apache.bcel.classfile.Constant.html">Constant</A> class and
* represents a reference to the name and signature of a field or method.
*
* http://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html#jvms-4.4.10
* https://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html#jvms-4.4.10
*
* @author Andy Clement
* @see Constant

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantFieldref.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantFloat.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantInteger.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantInterfaceMethodref.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 3
- 3
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantInvokeDynamic.java View File

@@ -19,7 +19,7 @@
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -49,7 +49,7 @@
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
package org.aspectj.apache.bcel.classfile;

@@ -64,7 +64,7 @@ import org.aspectj.apache.bcel.Constants;
* This class is derived from the abstract <A HREF="org.aspectj.apache.bcel.classfile.Constant.html">Constant</A> class and
* represents a reference to the name and signature of a field or method.
*
* http://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html#jvms-4.4.10
* https://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html#jvms-4.4.10
*
* @author Andy Clement
* @see Constant

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantLong.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 3
- 3
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantMethodHandle.java View File

@@ -19,7 +19,7 @@
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -49,7 +49,7 @@
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
package org.aspectj.apache.bcel.classfile;

@@ -64,7 +64,7 @@ import org.aspectj.apache.bcel.Constants;
* This class is derived from the abstract <A HREF="org.aspectj.apache.bcel.classfile.Constant.html">Constant</A> class and
* represents a reference to the name and signature of a field or method.
*
* http://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html#jvms-4.4.8
* https://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html#jvms-4.4.8
*
* @author Andy Clement
* @see Constant

+ 3
- 3
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantMethodType.java View File

@@ -19,7 +19,7 @@
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -49,7 +49,7 @@
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
package org.aspectj.apache.bcel.classfile;

@@ -64,7 +64,7 @@ import org.aspectj.apache.bcel.Constants;
* This class is derived from the abstract <A HREF="org.aspectj.apache.bcel.classfile.Constant.html">Constant</A> class and
* represents a reference to the name and signature of a field or method.
*
* http://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html#jvms-4.4.9
* https://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html#jvms-4.4.9
*
* @author Andy Clement
* @see Constant

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantMethodref.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 3
- 3
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantModule.java View File

@@ -19,7 +19,7 @@
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -49,7 +49,7 @@
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
package org.aspectj.apache.bcel.classfile;

@@ -62,7 +62,7 @@ import org.aspectj.apache.bcel.Constants;
/**
* Represents a module.
*
* See http://cr.openjdk.java.net/~mr/jigsaw/spec/java-se-9-jvms-diffs.pdf 4.4.11
* See https://cr.openjdk.java.net/~mr/jigsaw/spec/java-se-9-jvms-diffs.pdf 4.4.11
*
* @author Andy Clement
*/

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantNameAndType.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantObject.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

/**

+ 3
- 3
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantPackage.java View File

@@ -19,7 +19,7 @@
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -49,7 +49,7 @@
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
package org.aspectj.apache.bcel.classfile;

@@ -62,7 +62,7 @@ import org.aspectj.apache.bcel.Constants;
/**
* Represents a module.
*
* See http://cr.openjdk.java.net/~mr/jigsaw/spec/java-se-9-jvms-diffs.pdf 4.4.12
* See https://cr.openjdk.java.net/~mr/jigsaw/spec/java-se-9-jvms-diffs.pdf 4.4.12
*
* @author Andy Clement
*/

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantPool.java View File

@@ -19,7 +19,7 @@
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -49,7 +49,7 @@
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
package org.aspectj.apache.bcel.classfile;


+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantString.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantUtf8.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ConstantValue.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Deprecated.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ExceptionTable.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Field.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
import java.io.DataInputStream;
import java.io.IOException;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/FieldOrMethod.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
import java.io.DataInputStream;
import java.io.DataOutputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/InnerClass.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/InnerClasses.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/JavaClass.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.ByteArrayOutputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/LineNumber.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/LineNumberTable.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.ByteArrayInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/LocalVariable.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/LocalVariableTable.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.ByteArrayInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Method.java View File

@@ -19,7 +19,7 @@
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -49,7 +49,7 @@
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
package org.aspectj.apache.bcel.classfile;


+ 1
- 1
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/MethodParameters.java View File

@@ -19,7 +19,7 @@ import java.io.IOException;

import org.aspectj.apache.bcel.Constants;

// see http://cr.openjdk.java.net/~abuckley/8misc.pdf
// see https://cr.openjdk.java.net/~abuckley/8misc.pdf
public class MethodParameters extends Attribute {

public final static int[] NO_PARAMETER_NAME_INDEXES = new int[0];

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Modifiers.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import org.aspectj.apache.bcel.Constants;

+ 5
- 5
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Module.java View File

@@ -19,7 +19,7 @@
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -49,7 +49,7 @@
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
package org.aspectj.apache.bcel.classfile;

@@ -62,8 +62,8 @@ import org.aspectj.apache.bcel.Constants;
/**
* This class is derived from <em>Attribute</em> and represents the module
* information captured in a class file.
* http://cr.openjdk.java.net/~mr/jigsaw/spec/lang-vm.html
* http://cr.openjdk.java.net/~mr/jigsaw/spec/java-se-9-jvms-diffs.pdf 4.7.25
* https://cr.openjdk.java.net/~mr/jigsaw/spec/lang-vm.html
* https://cr.openjdk.java.net/~mr/jigsaw/spec/java-se-9-jvms-diffs.pdf 4.7.25
*
* @author Andy Clement
*/
@@ -367,7 +367,7 @@ public final class Module extends Attribute {
return ((moduleInfo[offset++] & 0xff) << 8) + (moduleInfo[offset] & 0xff);
}

// Format: http://cr.openjdk.java.net/~mr/jigsaw/spec/java-se-9-jvms-diffs.pdf 4.7.25
// Format: https://cr.openjdk.java.net/~mr/jigsaw/spec/java-se-9-jvms-diffs.pdf 4.7.25
private void ensureUnpacked() {
if (!unpacked) {
ptr = 0;

+ 3
- 3
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ModuleMainClass.java View File

@@ -19,7 +19,7 @@
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -49,7 +49,7 @@
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
package org.aspectj.apache.bcel.classfile;

@@ -61,7 +61,7 @@ import org.aspectj.apache.bcel.Constants;

/**
* Indicates the main class of a module.
* http://cr.openjdk.java.net/~mr/jigsaw/spec/java-se-9-jvms-diffs.pdf 4.7.26
* https://cr.openjdk.java.net/~mr/jigsaw/spec/java-se-9-jvms-diffs.pdf 4.7.26
*
* @author Andy Clement
*/

+ 3
- 3
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/ModulePackages.java View File

@@ -19,7 +19,7 @@
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -49,7 +49,7 @@
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
package org.aspectj.apache.bcel.classfile;

@@ -61,7 +61,7 @@ import org.aspectj.apache.bcel.Constants;

/**
* Indicates all the packages of a module that are exported or opened by the module attribute.
* http://cr.openjdk.java.net/~mr/jigsaw/spec/java-se-9-jvms-diffs.pdf 4.7.26
* https://cr.openjdk.java.net/~mr/jigsaw/spec/java-se-9-jvms-diffs.pdf 4.7.26
*
* @author Andy Clement
*/

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/NestHost.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/NestMembers.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Node.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

/**

+ 3
- 3
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Signature.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*
* Extended by Adrian Colyer, June 2005 to support unpacking of Signature
* attribute
@@ -65,7 +65,7 @@ import java.io.IOException;
import org.aspectj.apache.bcel.Constants;

/**
* This class is derived from <em>Attribute</em> and represents a reference to a <href="http://wwwipd.ira.uka.de/~pizza/gj/">GJ</a>
* This class is derived from <em>Attribute</em> and represents a reference to a <href="https://wwwipd.ira.uka.de/~pizza/gj/">GJ</a>
* attribute.
*
* @version $Id: Signature.java,v 1.11 2009/09/15 19:40:12 aclement Exp $

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/SimpleConstant.java View File

@@ -19,7 +19,7 @@
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -49,7 +49,7 @@
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
package org.aspectj.apache.bcel.classfile;


+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/SourceFile.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 4
- 4
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/StackMap.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;
@@ -61,8 +61,8 @@ import java.io.IOException;
import org.aspectj.apache.bcel.Constants;

/**
* This class represents a stack map attribute used for preverification of Java classes for the <a href="http://java.sun.com/j2me/">
* Java 2 Micro Edition</a> (J2ME). This attribute is used by the <a href="http://java.sun.com/products/cldc/">KVM</a> and contained
* This class represents a stack map attribute used for preverification of Java classes for the <a href="https://java.sun.com/j2me/">
* Java 2 Micro Edition</a> (J2ME). This attribute is used by the <a href="https://java.sun.com/products/cldc/">KVM</a> and contained
* within the Code attribute of a method. See CLDC specification 5.3.1.2
*
* @version $Id: StackMap.java,v 1.6 2009/09/15 19:40:12 aclement Exp $

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/StackMapEntry.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/StackMapType.java View File

@@ -25,7 +25,7 @@ import java.io.IOException;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -55,7 +55,7 @@ import java.io.IOException;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import org.aspectj.apache.bcel.Constants;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Synthetic.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Unknown.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataInputStream;

+ 3
- 3
bcel-builder/src/main/java/org/aspectj/apache/bcel/classfile/Utility.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.classfile;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.classfile;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.ByteArrayOutputStream;
@@ -996,7 +996,7 @@ public abstract class Utility {
// space
break;

case Constants.INVOKEDYNAMIC://http://docs.oracle.com/javase/specs/jvms/se7/html/jvms-6.html#jvms-6.5.invokedynamic
case Constants.INVOKEDYNAMIC://https://docs.oracle.com/javase/specs/jvms/se7/html/jvms-6.html#jvms-6.5.invokedynamic
index = bytes.readUnsignedShort();
bytes.readUnsignedShort(); // zeroes
buf.append("\t" + constant_pool.constantToString(index) + (verbose ? " (" + index + ")" : ""));

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/ArrayType.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
import org.aspectj.apache.bcel.Constants;


+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/BasicType.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
import org.aspectj.apache.bcel.Constants;


+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/BranchHandle.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

/**

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/ClassGen.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.ByteArrayOutputStream;

+ 2
- 3
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/ClassGenException.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

/**
@@ -65,4 +65,3 @@ public class ClassGenException extends RuntimeException {
public ClassGenException() { super(); }
public ClassGenException(String s) { super(s); }
}


+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/CodeExceptionGen.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import org.aspectj.apache.bcel.classfile.CodeException;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/FieldGen.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.util.List;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/FieldGenOrMethodGen.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.util.ArrayList;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/FieldInstruction.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import org.aspectj.apache.bcel.classfile.ConstantPool;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/FieldOrMethod.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
import org.aspectj.apache.bcel.classfile.Constant;
import org.aspectj.apache.bcel.classfile.ConstantCP;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/IINC.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
import java.io.DataOutputStream;
import java.io.IOException;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/INVOKEINTERFACE.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
import java.io.DataOutputStream;
import java.io.IOException;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstVisitor.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

/**

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/Instruction.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataOutputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionBranch.java View File

@@ -19,7 +19,7 @@
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -49,7 +49,7 @@
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
package org.aspectj.apache.bcel.generic;


+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionByte.java View File

@@ -19,7 +19,7 @@
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -49,7 +49,7 @@
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
package org.aspectj.apache.bcel.generic;


+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionCP.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataOutputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionConstants.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import org.aspectj.apache.bcel.Constants;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionFactory.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
import org.aspectj.apache.bcel.Constants;
import org.aspectj.apache.bcel.classfile.ConstantPool;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionHandle.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.util.Collections;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionLV.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
import java.io.DataOutputStream;
import java.io.IOException;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionList.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.ByteArrayOutputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionSelect.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
import java.io.DataOutputStream;
import java.io.IOException;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionShort.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import java.io.DataOutputStream;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InstructionTargeter.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

/**

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InvokeDynamic.java View File

@@ -19,7 +19,7 @@
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -49,7 +49,7 @@
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

package org.aspectj.apache.bcel.generic;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/InvokeInstruction.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
import java.util.StringTokenizer;


+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/LOOKUPSWITCH.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
import java.io.DataOutputStream;
import java.io.IOException;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/LineNumberGen.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import org.aspectj.apache.bcel.classfile.LineNumber;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/LocalVariableGen.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import org.aspectj.apache.bcel.Constants;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/MULTIANEWARRAY.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
import java.io.DataOutputStream;
import java.io.IOException;

+ 3
- 3
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/MethodGen.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
import java.util.ArrayList;
import java.util.Hashtable;
@@ -85,7 +85,7 @@ import org.aspectj.apache.bcel.classfile.annotation.RuntimeParamAnnos;
*
* @version $Id: MethodGen.java,v 1.17 2011/05/19 23:23:46 aclement Exp $
* @author <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A>
* @author <A HREF="http://www.vmeng.com/beard">Patrick C. Beard</A> [setMaxStack()]
* @author <A HREF="https://www.vmeng.com/beard">Patrick C. Beard</A> [setMaxStack()]
* @see InstructionList
* @see Method
*/

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/ObjectType.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
import org.aspectj.apache.bcel.Constants;
import org.aspectj.apache.bcel.Repository;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/RET.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
import java.io.DataOutputStream;
import java.io.IOException;

+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/ReferenceType.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

import org.aspectj.apache.bcel.Constants;

+ 3
- 3
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/ReturnaddressType.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/
import org.aspectj.apache.bcel.Constants;

@@ -60,7 +60,7 @@ import org.aspectj.apache.bcel.Constants;
*
* see vmspec2 3.3.3
* @version $Id: ReturnaddressType.java,v 1.3 2008/05/28 23:52:56 aclement Exp $
* @author <A HREF="http://www.inf.fu-berlin.de/~ehaase">Enver Haase</A>
* @author <A HREF="https://www.inf.fu-berlin.de/~ehaase">Enver Haase</A>
*/
public class ReturnaddressType extends Type {


+ 2
- 2
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/SwitchBuilder.java View File

@@ -21,7 +21,7 @@ package org.aspectj.apache.bcel.generic;
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Apache Software Foundation (https://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
@@ -51,7 +51,7 @@ package org.aspectj.apache.bcel.generic;
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
* <https://www.apache.org/>.
*/

/**

+ 0
- 0
bcel-builder/src/main/java/org/aspectj/apache/bcel/generic/TABLESWITCH.java View File


Some files were not shown because too many files changed in this diff

Loading…
Cancel
Save