aboutsummaryrefslogtreecommitdiffstats
path: root/src/java
diff options
context:
space:
mode:
authorVincent Hennebert <vhennebert@apache.org>2009-03-23 12:12:36 +0000
committerVincent Hennebert <vhennebert@apache.org>2009-03-23 12:12:36 +0000
commit837cacd29624ddf4f1a58fc7069121ee8652c8f7 (patch)
treefb4bf7463f850b2c8b151a8c361e81d121159b7e /src/java
parente46d4be9eeb5dd61b074823af218b741a0025286 (diff)
downloadxmlgraphics-fop-837cacd29624ddf4f1a58fc7069121ee8652c8f7.tar.gz
xmlgraphics-fop-837cacd29624ddf4f1a58fc7069121ee8652c8f7.zip
Set svn:eol-style property on page-position-last_break-before_bugzilla46489.xml test case. Simplified it by removing superfluous content and references to fonts that are not available by default.
Fixed small indentation issue in ElementListUtils. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@757382 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/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();
}
/**