[Clirr-devel] CVS: clirr/src/testinput/testlib-v2/testlib MethodsChange.java,1.1,1.2
Status: Alpha
Brought to you by:
lkuehne
From: Simon K. <s_k...@us...> - 2004-06-08 09:12:49
|
Update of /cvsroot/clirr/clirr/src/testinput/testlib-v2/testlib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8071/testlib-v2/testlib Modified Files: MethodsChange.java Log Message: Testdata for deprecated/undeprecated method tests. Index: MethodsChange.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/testinput/testlib-v2/testlib/MethodsChange.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- MethodsChange.java 18 Jan 2004 12:01:58 -0000 1.1 +++ MethodsChange.java 8 Jun 2004 09:12:40 -0000 1.2 @@ -92,4 +92,18 @@ { throw new Exception(); } + + /** + * @deprecated this is a bad method. + */ + public void becomesDeprecated() + { + } + + /** + * This method was previously deprecated. + */ + public void becomesUndeprecated() + { + } } |