From: Adrian Cumiskey Date: Thu, 15 Oct 2009 17:07:08 +0000 (+0000) Subject: Documented with generics comments. X-Git-Tag: fop-1_0~138 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ea58935a59a651eba814fc0eb4d16d0e2a972d97;p=xmlgraphics-fop.git Documented with generics comments. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@825566 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/fop/fo/FObj.java b/src/java/org/apache/fop/fo/FObj.java index 2ebfaaf95..133d932bc 100644 --- a/src/java/org/apache/fop/fo/FObj.java +++ b/src/java/org/apache/fop/fo/FObj.java @@ -56,7 +56,7 @@ public abstract class FObj extends FONode implements Constants { private List/**/ extensionAttachments = null; /** The map of foreign attributes, null if none */ - private Map foreignAttributes = null; + private Map/**/ foreignAttributes = null; /** Used to indicate if this FO is either an Out Of Line FO (see rec) * or a descendant of one. Used during FO validation. @@ -591,7 +591,7 @@ public abstract class FObj extends FONode implements Constants { throw new NullPointerException("Parameter attributeName must not be null"); } if (foreignAttributes == null) { - foreignAttributes = new java.util.HashMap(); + foreignAttributes = new java.util.HashMap/**/(); } foreignAttributes.put(attributeName, value); }