You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cxf.apache.org by Glen Mazza <gl...@verizon.net> on 2008/12/09 18:36:35 UTC

Re: svn commit: r724429 - in /cxf/trunk: common/common/src/main/java/org/apache/cxf/helpers/FileUtils.java common/common/src/test/java/org/apache/cxf/helpers/FileUtilsTest.java rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/spring/SpringBeansTest.java

On Mon, 2008-12-08 at 18:02 +0000, dkulp@apache.org wrote:
> Author: dkulp
> Date: Mon Dec  8 10:02:07 2008
> New Revision: 724429
> 
> URL: http://svn.apache.org/viewvc?rev=724429&view=rev
> Log:
> Fix checkstyle/pmd errors
> 
> Modified:
>     cxf/trunk/common/common/src/main/java/org/apache/cxf/helpers/FileUtils.java
>     cxf/trunk/common/common/src/test/java/org/apache/cxf/helpers/FileUtilsTest.java
>     cxf/trunk/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/spring/SpringBeansTest.java
> 
> Modified: cxf/trunk/common/common/src/main/java/org/apache/cxf/helpers/FileUtils.java
> URL: http://svn.apache.org/viewvc/cxf/trunk/common/common/src/main/java/org/apache/cxf/helpers/FileUtils.java?rev=724429&r1=724428&r2=724429&view=diff
> ==============================================================================
> --- cxf/trunk/common/common/src/main/java/org/apache/cxf/helpers/FileUtils.java (original)
> +++ cxf/trunk/common/common/src/main/java/org/apache/cxf/helpers/FileUtils.java Mon Dec  8 10:02:07 2008
> @@ -57,10 +57,11 @@
>              int x = (int)(Math.random() * 1000000);
>              s = System.getProperty("java.io.tmpdir");
>              File checkExists = new File(s);
> -            if(!checkExists.exists()) {
> +            if (!checkExists.exists()) {
>                  throw new RuntimeException("The directory " 
>                                         + checkExists.getAbsolutePath() 
> -                                       + " does not exist, please set java.io.tempdir to an existing directory");
> +                                       + " does not exist, please set java.io.tempdir"
> +                                       + "to an existing directory");

Space needed.