aboutsummaryrefslogtreecommitdiff
path: root/textproc/fop/files
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2016-05-06 07:16:47 +0000
committerKurt Jaeger <pi@FreeBSD.org>2016-05-06 07:16:47 +0000
commitbc0b06f38e719bd3304efa5a2d18f64aaad14475 (patch)
tree6edf3ea4862cc9c8230d236964f671003e87de20 /textproc/fop/files
parent0f38680f9c33eebdd430acbeec2fe40681c5c7e0 (diff)
downloadports-bc0b06f38e719bd3304efa5a2d18f64aaad14475.tar.gz
ports-bc0b06f38e719bd3304efa5a2d18f64aaad14475.zip
Notes
Diffstat (limited to 'textproc/fop/files')
-rw-r--r--textproc/fop/files/patch-src_java_org_apache_fop_layoutmgr_list_ListItemLayoutManager.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/textproc/fop/files/patch-src_java_org_apache_fop_layoutmgr_list_ListItemLayoutManager.java b/textproc/fop/files/patch-src_java_org_apache_fop_layoutmgr_list_ListItemLayoutManager.java
deleted file mode 100644
index 519a05d5dd7c..000000000000
--- a/textproc/fop/files/patch-src_java_org_apache_fop_layoutmgr_list_ListItemLayoutManager.java
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/java/org/apache/fop/layoutmgr/list/ListItemLayoutManager.java.orig 2015-05-26 08:03:48 UTC
-+++ src/java/org/apache/fop/layoutmgr/list/ListItemLayoutManager.java
-@@ -393,7 +393,7 @@ public class ListItemLayoutManager exten
- int breakClass = EN_AUTO;
- KnuthElement endEl = elementLists[0].size() > 0 ? (KnuthElement) elementLists[0].get(end[0])
- : null;
-- Position originalLabelPosition = endEl != null ? endEl.getPosition().getPosition() : null;
-+ Position originalLabelPosition = (endEl != null && endEl.getPosition() != null) ? endEl.getPosition().getPosition() : null;
- if (endEl instanceof KnuthPenalty) {
- additionalPenaltyHeight = endEl.getWidth();
- stepPenalty = endEl.getPenalty() == -KnuthElement.INFINITE ? -KnuthElement.INFINITE : Math
-@@ -402,7 +402,7 @@ public class ListItemLayoutManager exten
- ((KnuthPenalty) endEl).getBreakClass());
- }
- endEl = elementLists[1].size() > 0 ? (KnuthElement) elementLists[1].get(end[1]) : null;
-- Position originalBodyPosition = endEl != null ? endEl.getPosition().getPosition() : null;
-+ Position originalBodyPosition = (endEl != null && endEl.getPosition() != null) ? endEl.getPosition().getPosition() : null;
- if (endEl instanceof KnuthPenalty) {
- additionalPenaltyHeight = Math.max(
- additionalPenaltyHeight, endEl.getWidth());