]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Fix minor format error in exception message
authorGlenn Adams <gadams@apache.org>
Sun, 8 Apr 2012 08:45:47 +0000 (08:45 +0000)
committerGlenn Adams <gadams@apache.org>
Sun, 8 Apr 2012 08:45:47 +0000 (08:45 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1310963 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/layoutmgr/AbstractBreaker.java

index 25379062390d1c41c8a20fcf801e8a96ff9a13d0..dc87f9f1d216dcb767a0b265372c19ae54499577 100644 (file)
@@ -752,7 +752,7 @@ public abstract class AbstractBreaker {
         Position positionAtBreak = elementAtBreak.getPosition();
         if (!(positionAtBreak instanceof SpaceResolver.SpaceHandlingBreakPosition)) {
             throw new UnsupportedOperationException(
-                    "Don't know how to restart at position" + positionAtBreak);
+                    "Don't know how to restart at position " + positionAtBreak);
         }
         /* Retrieve the original position wrapped into this space position */
         positionAtBreak = positionAtBreak.getPosition();