You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by eb...@apache.org on 2014/04/25 12:20:36 UTC

svn commit: r1589974 - /commons/proper/bcel/trunk/src/main/java/org/apache/bcel/Constants.java

Author: ebourg
Date: Fri Apr 25 10:20:35 2014
New Revision: 1589974

URL: http://svn.apache.org/r1589974
Log:
Removed the mistyped ACC_SYPER constant (ACC_SUPER is already present)

Modified:
    commons/proper/bcel/trunk/src/main/java/org/apache/bcel/Constants.java

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/bcel/Constants.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/bcel/Constants.java?rev=1589974&r1=1589973&r2=1589974&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/bcel/Constants.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/bcel/Constants.java Fri Apr 25 10:20:35 2014
@@ -158,11 +158,6 @@ public interface Constants {
   /** One of the access flags for fields, methods, or classes.
    *  @see #ACC_PUBLIC
    */
-  public final static short ACC_SYPER        = 0x0020;
-
-  /** One of the access flags for fields, methods, or classes.
-   *  @see #ACC_PUBLIC
-   */
   public final static short ACC_VOLATILE     = 0x0040;
 
   /** One of the access flags for fields, methods, or classes.