From a8db2f8b67c333d8aa41716b300fad5998d2c894 Mon Sep 17 00:00:00 2001 From: Adrian Cumiskey Date: Tue, 23 Jun 2009 13:17:20 +0000 Subject: Added generics comments. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@787667 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/fop/fo/FObj.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/java/org/apache/fop/fo/FObj.java b/src/java/org/apache/fop/fo/FObj.java index 55844e6db..2ebfaaf95 100644 --- a/src/java/org/apache/fop/fo/FObj.java +++ b/src/java/org/apache/fop/fo/FObj.java @@ -53,7 +53,7 @@ public abstract class FObj extends FONode implements Constants { protected FONode firstChild; /** The list of extension attachments, null if none */ - private List extensionAttachments = null; + private List/**/ extensionAttachments = null; /** The map of foreign attributes, null if none */ private Map foreignAttributes = null; @@ -554,7 +554,7 @@ public abstract class FObj extends FONode implements Constants { "Parameter attachment must not be null"); } if (extensionAttachments == null) { - extensionAttachments = new java.util.ArrayList(); + extensionAttachments = new java.util.ArrayList/**/(); } if (log.isDebugEnabled()) { log.debug("ExtensionAttachment of category " @@ -565,7 +565,7 @@ public abstract class FObj extends FONode implements Constants { } /** @return the extension attachments of this FObj. */ - public List getExtensionAttachments() { + public List/**/ getExtensionAttachments() { if (extensionAttachments == null) { return Collections.EMPTY_LIST; } else { -- cgit v1.2.3