[Clirr-devel] CVS: clirr/core/src/testinput/testlib-v2/testlib MembersChange.java,1.1,1.2
Status: Alpha
Brought to you by:
lkuehne
From: Simon K. <s_k...@us...> - 2004-07-23 08:14:27
|
Update of /cvsroot/clirr/clirr/core/src/testinput/testlib-v2/testlib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27581/src/testinput/testlib-v2/testlib Modified Files: MembersChange.java Log Message: New fields to test MSG_REMOVED_CONSTANT_FIELD Index: MembersChange.java =================================================================== RCS file: /cvsroot/clirr/clirr/core/src/testinput/testlib-v2/testlib/MembersChange.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- MembersChange.java 15 Jul 2004 17:06:30 -0000 1.1 +++ MembersChange.java 23 Jul 2004 08:14:19 -0000 1.2 @@ -18,11 +18,13 @@ 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 static final int fin7 = 7; // removed constant field public int pub1 = 0; public static int pub2 = 0; // added static public final int pub3 = 0; // added final public int pub4 = 0; + // public int pub5 = 0; // removed non-constant field protected int prot1 = 0; protected int prot2 = 0; |