You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by tv...@apache.org on 2009/08/13 20:02:27 UTC

svn commit: r803968 - /incubator/pivot/trunk/wtk/src/org/apache/pivot/wtkx/WTKXSerializer.java

Author: tvolkert
Date: Thu Aug 13 18:02:27 2009
New Revision: 803968

URL: http://svn.apache.org/viewvc?rev=803968&view=rev
Log:
Fixed missing space in log message in WTKXSerializer

Modified:
    incubator/pivot/trunk/wtk/src/org/apache/pivot/wtkx/WTKXSerializer.java

Modified: incubator/pivot/trunk/wtk/src/org/apache/pivot/wtkx/WTKXSerializer.java
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/wtk/src/org/apache/pivot/wtkx/WTKXSerializer.java?rev=803968&r1=803967&r2=803968&view=diff
==============================================================================
--- incubator/pivot/trunk/wtk/src/org/apache/pivot/wtkx/WTKXSerializer.java (original)
+++ incubator/pivot/trunk/wtk/src/org/apache/pivot/wtkx/WTKXSerializer.java Thu Aug 13 18:02:27 2009
@@ -888,7 +888,7 @@
             + " starting at line number " + getLineNumber();
 
         if (location != null) {
-            message += " in file" + location.getPath();
+            message += " in file " + location.getPath();
         }
 
         message += ":";