]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
put in inherit keyword
authorKeiron Liddle <keiron@apache.org>
Wed, 20 Feb 2002 10:41:45 +0000 (10:41 +0000)
committerKeiron Liddle <keiron@apache.org>
Wed, 20 Feb 2002 10:41:45 +0000 (10:41 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194658 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/fo/PropertyList.java

index c9925923692d6a8ca07c1cecdcc35482a3728084..02f136eab6db43320a5208368dd7a66d36103be0 100644 (file)
@@ -252,16 +252,15 @@ public class PropertyList extends HashMap {
                 // don't know what to do here
             }
         }
-/*
+
         // if value is inherit then get computed value from
         // parent
-        // namespaces??
         if(p != null && "inherit".equals(p.getString())) {
             if (this.parentPropertyList != null) {
                 p = parentPropertyList.get(propertyName, true, false);
             }
         }
-*/
+
         if (subpropName != null && p != null) {
             return this.builder.getSubpropValue(namespace, element,
                                                 propertyName, p, subpropName);