diff options
Diffstat (limited to 'src/java/org/apache/fop/layoutmgr/inline/FootnoteLayoutManager.java')
-rw-r--r-- | src/java/org/apache/fop/layoutmgr/inline/FootnoteLayoutManager.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/java/org/apache/fop/layoutmgr/inline/FootnoteLayoutManager.java b/src/java/org/apache/fop/layoutmgr/inline/FootnoteLayoutManager.java index 44d8fc8ed..9a32ce9a3 100644 --- a/src/java/org/apache/fop/layoutmgr/inline/FootnoteLayoutManager.java +++ b/src/java/org/apache/fop/layoutmgr/inline/FootnoteLayoutManager.java @@ -122,6 +122,16 @@ public class FootnoteLayoutManager extends AbstractLayoutManager return oldList; } + /** + * Remove the word space represented by the given elements + * + * @param oldList the elements representing the word space + */ + public void removeWordSpace(List oldList) { + // do nothing + log.warn(this.getClass().getName() + " should not receive a call to removeWordSpace(list)"); + } + public void getWordChars(StringBuffer sbChars, Position pos) { log.warn("null implementation of getWordChars() called!"); } |