]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Final variables need to be initialized
authorarved <arved@unknown>
Tue, 26 Dec 2000 23:37:59 +0000 (23:37 +0000)
committerarved <arved@unknown>
Tue, 26 Dec 2000 23:37:59 +0000 (23:37 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193921 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/datatypes/LengthBase.java

index b7a3601c43f6eff2d103d831aa697c49a22d56f4..b054bc58caf1b8b8e94eedcdabeba3a3eac6c549 100644 (file)
@@ -65,13 +65,13 @@ public class LengthBase implements PercentBase {
   /**
    * FO parent of the FO for which this property is to be calculated.
    */
-  protected final FObj parentFO;
+  protected /* final */ FObj parentFO;
   /**
    * PropertyList for the FO where this property is calculated.
    */
-  private final PropertyList propertyList;
+  private /* final */ PropertyList propertyList;
   /** One of the defined types of LengthBase */
-  private final int iBaseType;
+  private /* final */ int iBaseType;
 
   public LengthBase(FObj parentFO, PropertyList plist, int iBaseType) {
     this.parentFO = parentFO;