[Clirr-devel] CVS: clirr/core/src/testinput/testlib-v1/testlib/scope ClassScopeChange.java,1.2,1.3
Status: Alpha
Brought to you by:
lkuehne
From: <lk...@us...> - 2005-08-26 05:36:00
|
Update of /cvsroot/clirr/clirr/core/src/testinput/testlib-v1/testlib/scope In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8502/src/testinput/testlib-v1/testlib/scope Modified Files: ClassScopeChange.java Log Message: moved clirr implementation to new SPI infrastructure Index: ClassScopeChange.java =================================================================== RCS file: /cvsroot/clirr/clirr/core/src/testinput/testlib-v1/testlib/scope/ClassScopeChange.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ClassScopeChange.java 2 Sep 2004 04:21:32 -0000 1.2 +++ ClassScopeChange.java 26 Aug 2005 05:35:53 -0000 1.3 @@ -14,6 +14,9 @@ // public class becomes private public static class A4 {} + // public class is removed + public static class A5 {} + // protected class is unchanged protected static class B1 {} @@ -37,6 +40,9 @@ // package class becomes private static class C4 {} + + // package class is removed + static class C5 {} // private class is unchanged private static class D1 {} |