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:37:05 UTC

Re: svn commit: r724433 - /cxf/trunk/common/common/src/main/java/org/apache/cxf/helpers/FileUtils.java

On Mon, 2008-12-08 at 18:17 +0000, dkulp@apache.org wrote:
> Author: dkulp
> Date: Mon Dec  8 10:17:47 2008
> New Revision: 724433
> 
> URL: http://svn.apache.org/viewvc?rev=724433&view=rev
> Log:
> fix failing test
> 
> Modified:
>     cxf/trunk/common/common/src/main/java/org/apache/cxf/helpers/FileUtils.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=724433&r1=724432&r2=724433&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:17:47 2008
> @@ -61,7 +61,7 @@
>                  throw new RuntimeException("The directory " 
>                                         + checkExists.getAbsolutePath() 
>                                         + " does not exist, please set java.io.tempdir"
> -                                       + "to an existing directory");
> +                                       + " to an existing directory");
>              }
>              File f = new File(s, "cxf-tmp-" + x);
>              while (!f.mkdir()) {
> 
> 

Never mind.  You're apparently ahead of me.

Glen