You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2016/06/14 21:05:15 UTC

svn commit: r1748467 - in /commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile: AttributeReader.java FieldOrMethod.java StackMapEntry.java

Author: ggregory
Date: Tue Jun 14 21:05:14 2016
New Revision: 1748467

URL: http://svn.apache.org/viewvc?rev=1748467&view=rev
Log:
Add missing @java.lang.Deprecated.

Modified:
    commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/AttributeReader.java
    commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/FieldOrMethod.java
    commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/StackMapEntry.java

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/AttributeReader.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/AttributeReader.java?rev=1748467&r1=1748466&r2=1748467&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/AttributeReader.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/AttributeReader.java Tue Jun 14 21:05:14 2016
@@ -27,6 +27,7 @@ package org.apache.bcel.classfile;
  * 
  * @deprecated Use UnknownAttributeReader instead 
  */
+@java.lang.Deprecated
 public interface AttributeReader {
 
     /**

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/FieldOrMethod.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/FieldOrMethod.java?rev=1748467&r1=1748466&r2=1748467&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/FieldOrMethod.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/FieldOrMethod.java Tue Jun 14 21:05:14 2016
@@ -88,6 +88,7 @@ public abstract class FieldOrMethod exte
      * @throws ClassFormatException
      * @deprecated Use {@link #FieldOrMethod(java.io.DataInput, ConstantPool)} instead.
      */
+    @java.lang.Deprecated
     protected FieldOrMethod(final DataInputStream file, final ConstantPool constant_pool) throws IOException,
             ClassFormatException {
         this((DataInput) file, constant_pool);

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/StackMapEntry.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/StackMapEntry.java?rev=1748467&r1=1748466&r2=1748467&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/StackMapEntry.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/StackMapEntry.java Tue Jun 14 21:05:14 2016
@@ -102,6 +102,7 @@ public final class StackMapEntry impleme
      * @deprecated Since 6.0, use {@link #StackMapEntry(int, int, StackMapType[], StackMapType[], ConstantPool)}
      * instead
      */
+    @java.lang.Deprecated
     public StackMapEntry(final int byte_code_offset, final int number_of_locals,
             final StackMapType[] types_of_locals, final int number_of_stack_items,
             final StackMapType[] types_of_stack_items, final ConstantPool constant_pool) {