diff options
Diffstat (limited to 'src/java/org/apache/fop/fo/properties/PropertyMaker.java')
-rw-r--r-- | src/java/org/apache/fop/fo/properties/PropertyMaker.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/java/org/apache/fop/fo/properties/PropertyMaker.java b/src/java/org/apache/fop/fo/properties/PropertyMaker.java index 795db56e7..845b79a1d 100644 --- a/src/java/org/apache/fop/fo/properties/PropertyMaker.java +++ b/src/java/org/apache/fop/fo/properties/PropertyMaker.java @@ -50,16 +50,16 @@ public class PropertyMaker implements Cloneable { /** the property ID */ protected int propId; private boolean inherited = true; - private Map enums = null; - private Map keywords = null; + private Map enums; + private Map keywords; /** the default value for the maker */ - protected String defaultValue = null; + protected String defaultValue; /** Indicates whether the property is context-dependant and therefore can't be cached. */ - protected boolean contextDep = false; + protected boolean contextDep; /** Indicates whether the property is set through a shorthand. */ - protected boolean setByShorthand = false; + protected boolean setByShorthand; private int percentBase = -1; - private PropertyMaker[] shorthands = null; + private PropertyMaker[] shorthands; private ShorthandParser datatypeParser; /** default property **/ |