[Clirr-devel] CVS: clirr/src/java/net/sf/clirr Checker.java,1.6,1.7
Status: Alpha
Brought to you by:
lkuehne
From: Lars K?h. <lk...@us...> - 2003-12-28 09:39:53
|
Update of /cvsroot/clirr/clirr/src/java/net/sf/clirr In directory sc8-pr-cvs1:/tmp/cvs-serv18755/src/java/net/sf/clirr Modified Files: Checker.java Log Message: fixed checkstyle "line too long" and "trailing whitespace" errors Index: Checker.java =================================================================== RCS file: /cvsroot/clirr/clirr/src/java/net/sf/clirr/Checker.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- Checker.java 27 Dec 2003 17:47:16 -0000 1.6 +++ Checker.java 28 Dec 2003 09:39:48 -0000 1.7 @@ -224,7 +224,8 @@ } catch (MalformedURLException ex) { - final IllegalArgumentException illegalArgumentException = new IllegalArgumentException("Cannot create classloader with jar file " + jarFile); + final IllegalArgumentException illegalArgumentException = + new IllegalArgumentException("Cannot create classloader with jar file " + jarFile); illegalArgumentException.initCause(ex); throw illegalArgumentException; } |