aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/layoutmgr/ElementListUtils.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/org/apache/fop/layoutmgr/ElementListUtils.java')
-rw-r--r--src/java/org/apache/fop/layoutmgr/ElementListUtils.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/layoutmgr/ElementListUtils.java b/src/java/org/apache/fop/layoutmgr/ElementListUtils.java
index 7e337dc6b..d3403cd6b 100644
--- a/src/java/org/apache/fop/layoutmgr/ElementListUtils.java
+++ b/src/java/org/apache/fop/layoutmgr/ElementListUtils.java
@@ -199,8 +199,7 @@ public final class ElementListUtils {
* @return true if the list starts with a forced break
*/
public static boolean startsWithForcedBreak(List elems) {
- return !elems.isEmpty()
- && ((ListElement) elems.get(0)).isForcedBreak();
+ return !elems.isEmpty() && ((ListElement) elems.get(0)).isForcedBreak();
}
/**