Author: dbrosius Date: Sun Jul 31 17:26:17 2005 New Revision: 226707 URL: http://svn.apache.org/viewcvs?rev=226707&view=rev Log: constants should be static
Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/verifier/structurals/Subroutines.java Modified: jakarta/bcel/trunk/src/java/org/apache/bcel/verifier/structurals/Subroutines.java URL: http://svn.apache.org/viewcvs/jakarta/bcel/trunk/src/java/org/apache/bcel/verifier/structurals/Subroutines.java?rev=226707&r1=226706&r2=226707&view=diff ============================================================================== --- jakarta/bcel/trunk/src/java/org/apache/bcel/verifier/structurals/Subroutines.java (original) +++ jakarta/bcel/trunk/src/java/org/apache/bcel/verifier/structurals/Subroutines.java Sun Jul 31 17:26:17 2005 @@ -75,7 +75,7 @@ * field. This is used for the "top-level" Subroutine; * i.e. no subroutine. */ - private final int UNSET = -1; + private static final int UNSET = -1; /** * The Local Variable slot where the first --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]