[Clirr-devel] CVS: clirr/src/test/net/sf/clirr/checks MethodSetCheckTest.java,1.5,1.6
Status: Alpha
Brought to you by:
lkuehne
From: <lk...@us...> - 2004-06-13 11:43:26
|
Update of /cvsroot/clirr/clirr/src/test/net/sf/clirr/checks In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24081 Modified Files: MethodSetCheckTest.java Log Message: Removed abstract methods that are specified by an implemented interface are no longer reported as a compatibility problem. (RFE #961229) Index: MethodSetCheckTest.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/test/net/sf/clirr/checks/MethodSetCheckTest.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- MethodSetCheckTest.java 8 Jun 2004 09:11:33 -0000 1.5 +++ MethodSetCheckTest.java 13 Jun 2004 11:43:18 -0000 1.6 @@ -29,6 +29,9 @@ new ApiDifference("Method 'public void moveToSuper()' is now implemented in superclass testlib.ComplexMethodMoveBase in testlib.ComplexMethodMoveSub", Severity.INFO, "testlib.ComplexMethodMoveSub", "public void moveToSuper()", null), + new ApiDifference("Abstract method 'public void method()' is now specified by implemented interface testlib.BaseInterface in testlib.AbstractImpl", + Severity.INFO, "testlib.AbstractImpl", "public void method()", null), + // Constructor changes new ApiDifference("Parameter 1 of 'protected MethodsChange(int)' has changed it's type to java.lang.Integer in testlib.MethodsChange", Severity.ERROR, "testlib.MethodsChange", "protected MethodsChange(int)", null), @@ -57,7 +60,7 @@ Severity.INFO, "testlib.MethodsChange", "public void becomesDeprecated()", null), new ApiDifference("Method 'public void becomesUndeprecated()' is no longer deprecated in testlib.MethodsChange", Severity.INFO, "testlib.MethodsChange", "public void becomesUndeprecated()", null), - + // declared exceptions // TODO }; |