From: Lars K?h. <lk...@us...> - 2004-05-23 05:41:39
|
Update of /cvsroot/clirr/clirr/src/testinput/testlib-v2/testlib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29054/src/testinput/testlib-v2/testlib Modified Files: MembersChange.java Log Message: Fixed Copy and Paste error in FieldSetCheck, reported by Stephen Colebourne Index: MembersChange.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/testinput/testlib-v2/testlib/MembersChange.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- MembersChange.java 22 May 2004 14:06:30 -0000 1.1 +++ MembersChange.java 23 May 2004 05:41:28 -0000 1.2 @@ -17,8 +17,8 @@ public static int fin4 = 0; // removed final public int pub1 = 0; - public int pub2 = 0; - public int pub3 = 0; + public static int pub2 = 0; // added static + public final int pub3 = 0; // added final public int pub4 = 0; protected int prot1 = 0; |