[Clirr-devel] CVS: clirr/core/src/java/net/sf/clirr/core/internal/checks MethodSetCheck.java, 1.14
Status: Alpha
Brought to you by:
lkuehne
|
From: Lars K. <lk...@us...> - 2013-05-11 21:46:13
|
Update of /cvsroot/clirr/clirr/core/src/java/net/sf/clirr/core/internal/checks In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28729/core/internal/checks Modified Files: MethodSetCheck.java ClassFormatVersionCheck.java Log Message: checkstyle: removed trailing whitespace Index: MethodSetCheck.java =================================================================== RCS file: /cvsroot/clirr/clirr/core/src/java/net/sf/clirr/core/internal/checks/MethodSetCheck.java,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- MethodSetCheck.java 11 May 2013 20:49:36 -0000 1.14 +++ MethodSetCheck.java 11 May 2013 21:46:10 -0000 1.15 @@ -606,11 +606,11 @@ { return; } - + // TODO: Check assignability. If the new return type is // assignable to the old type, then the code is source-code // compatible even when binary-incompatible. - + if (bReturnType != null && cReturnType != null && bReturnType.getName().equals(cReturnType.getName())) { return; Index: ClassFormatVersionCheck.java =================================================================== RCS file: /cvsroot/clirr/clirr/core/src/java/net/sf/clirr/core/internal/checks/ClassFormatVersionCheck.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ClassFormatVersionCheck.java 11 May 2013 21:03:11 -0000 1.2 +++ ClassFormatVersionCheck.java 11 May 2013 21:46:10 -0000 1.3 @@ -50,7 +50,7 @@ { // don't use severity getSeverity(compatBaseline, Severity.ERROR) here, // as even classes that are not visible to the client code will trigger a - // requirement for a higher JVM version. + // requirement for a higher JVM version. log(MSG_CLASS_FORMAT_VERSION_INCREASED, Severity.ERROR, className, null, null, args); } else if (newClassFormatVersion < oldClassFormatVersion) |