]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
fix signature problem in inner class for InlineStackingLayoutManager -- attempt to...
authorWilliam Victor Mote <vmote@apache.org>
Sun, 12 Oct 2003 20:06:57 +0000 (20:06 +0000)
committerWilliam Victor Mote <vmote@apache.org>
Sun, 12 Oct 2003 20:06:57 +0000 (20:06 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196958 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/layoutmgr/AddLMVisitor.java

index bd5e83644a9d5390e789fb8e1998d1a3fb638266..c0908b4a451415a9e27f8636a5bb0ecf77d134d7 100644 (file)
@@ -292,11 +292,11 @@ public class AddLMVisitor implements FOTreeVisitor {
     /**
      * Add start and end properties for the link
      */
-    public void serveBasicLink(BasicLink node) {
+    public void serveBasicLink(final BasicLink node) {
         node.setup();
         InlineStackingLayoutManager lm;
         lm = new InlineStackingLayoutManager() {
-            protected InlineParent createArea(BasicLink node) {
+            protected InlineParent createArea() {
                 InlineParent area = super.createArea();
                 setupBasicLinkArea(node, parentLM, area);
                 return area;