[Clirr-devel] CVS: clirr/src/testinput/testlib-v2/testlib MembersChange.java,1.2,1.3
Status: Alpha
Brought to you by:
lkuehne
From: Lars K?h. <lk...@us...> - 2004-05-23 13:52:37
|
Update of /cvsroot/clirr/clirr/src/testinput/testlib-v2/testlib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23098/src/testinput/testlib-v2/testlib Modified Files: MembersChange.java Log Message: warn about changing the value of a compile time constant (RFE #958818) Index: MembersChange.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/testinput/testlib-v2/testlib/MembersChange.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- MembersChange.java 23 May 2004 05:41:28 -0000 1.2 +++ MembersChange.java 23 May 2004 13:52:27 -0000 1.3 @@ -15,6 +15,9 @@ protected static final int fin2 = 0; // public -> protected public final int fin3 = 0; // removed static public static int fin4 = 0; // removed final + public static final int fin5 = 1; // changed compile time constant + public static final boolean fin6 = + Boolean.FALSE.booleanValue(); // removed value of compile time constant public int pub1 = 0; public static int pub2 = 0; // added static |