From b24031d061c8902b4aa37859250f2a1c7504ebef Mon Sep 17 00:00:00 2001 From: Vincent Hennebert Date: Thu, 14 Nov 2013 09:46:24 +0000 Subject: [PATCH] Implemented missing methods git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_InlineContainer@1541864 13f79535-47bb-0310-9956-ffa450edef68 --- .../inline/InlineContainerLayoutManager.java | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/java/org/apache/fop/layoutmgr/inline/InlineContainerLayoutManager.java b/src/java/org/apache/fop/layoutmgr/inline/InlineContainerLayoutManager.java index 771bda255..020eb9982 100644 --- a/src/java/org/apache/fop/layoutmgr/inline/InlineContainerLayoutManager.java +++ b/src/java/org/apache/fop/layoutmgr/inline/InlineContainerLayoutManager.java @@ -301,31 +301,30 @@ public class InlineContainerLayoutManager extends AbstractLayoutManager implemen } public List addALetterSpaceTo(List oldList) { - throw new UnsupportedOperationException("Not implemented"); + return oldList; } public List addALetterSpaceTo(List oldList, int depth) { - throw new UnsupportedOperationException("Not implemented"); + return oldList; } public String getWordChars(Position pos) { - throw new UnsupportedOperationException("Not implemented"); + return ""; } public void hyphenate(Position pos, HyphContext hyphContext) { - throw new UnsupportedOperationException("Not implemented"); } public boolean applyChanges(List oldList) { - throw new UnsupportedOperationException("Not implemented"); + return false; } public boolean applyChanges(List oldList, int depth) { - throw new UnsupportedOperationException("Not implemented"); + return false; } public List getChangedKnuthElements(List oldList, int alignment, int depth) { - throw new UnsupportedOperationException("Not implemented"); + return oldList; } } -- 2.39.5