From ff09571ccf6969f5594332780f9c518dc4ace538 Mon Sep 17 00:00:00 2001 From: Jeremias Maerki Date: Fri, 4 Jul 2003 19:59:40 +0000 Subject: [PATCH] Style only git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196598 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/fop/fo/PropertyListBuilder.java | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/java/org/apache/fop/fo/PropertyListBuilder.java b/src/java/org/apache/fop/fo/PropertyListBuilder.java index c8feeae81..a3dbbaeb1 100644 --- a/src/java/org/apache/fop/fo/PropertyListBuilder.java +++ b/src/java/org/apache/fop/fo/PropertyListBuilder.java @@ -56,7 +56,7 @@ import org.xml.sax.Attributes; // FOP import org.apache.fop.apps.FOPException; -import org.apache.fop.fo.Property.*; +import org.apache.fop.fo.Property.Maker; public class PropertyListBuilder { @@ -129,7 +129,7 @@ public class PropertyListBuilder { * properties. * @return PropertyList object containing collection of Properties objects * appropriate for the FObj - * @throws FOPException + * @throws FOPException If an error occurs while building the PropertyList */ public PropertyList makeList(String nameSpaceURI, String elementName, Attributes attributes, @@ -203,8 +203,7 @@ public class PropertyListBuilder { Property prop = null; if (subPropertyName == null) { prop = propertyMaker.make(propList, attributeValue, parentFO); - } - else { + } else { Property baseProperty = findBaseProperty(attributes, propList, parentFO, basePropertyName, propertyMaker); prop = propertyMaker.make(baseProperty, subPropertyName, @@ -213,8 +212,7 @@ public class PropertyListBuilder { if (prop != null) { propList.put(basePropertyName, prop); } - } - catch (FOPException e) { + } catch (FOPException e) { /**@todo log this exception */ // log.error(e.getMessage()); } -- 2.39.5