From: William Victor Mote Date: Mon, 15 Sep 2003 17:45:49 +0000 (+0000) Subject: make instance variables protected instead of private to make subclassing easier X-Git-Tag: Root_Temp_KnuthStylePageBreaking~1096 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c0a9978ce16505eff791f147d09695a85c8b2f54;p=xmlgraphics-fop.git make instance variables protected instead of private to make subclassing easier git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196910 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/fop/layoutmgr/AddLMVisitor.java b/src/java/org/apache/fop/layoutmgr/AddLMVisitor.java index 600ca2449..c9106e7ac 100644 --- a/src/java/org/apache/fop/layoutmgr/AddLMVisitor.java +++ b/src/java/org/apache/fop/layoutmgr/AddLMVisitor.java @@ -140,11 +140,11 @@ public class AddLMVisitor extends FOTreeVisitor { /** The List object to which methods in this class should add Layout * Managers */ - private List currentLMList; + protected List currentLMList; /** A List object which can be used to save and restore the currentLMList if * another List should temporarily be used */ - private List saveLMList; + protected List saveLMList; /** *