aboutsummaryrefslogtreecommitdiffstats
path: root/src/java
diff options
context:
space:
mode:
authorJeremias Maerki <jeremias@apache.org>2003-07-04 19:59:40 +0000
committerJeremias Maerki <jeremias@apache.org>2003-07-04 19:59:40 +0000
commitff09571ccf6969f5594332780f9c518dc4ace538 (patch)
tree85d84fcef0187c38be708594e24f58394d219e4c /src/java
parentf9c2f96e554bbb4a626b949307c82ed25762ce7b (diff)
downloadxmlgraphics-fop-ff09571ccf6969f5594332780f9c518dc4ace538.tar.gz
xmlgraphics-fop-ff09571ccf6969f5594332780f9c518dc4ace538.zip
Style only
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196598 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java')
-rw-r--r--src/java/org/apache/fop/fo/PropertyListBuilder.java10
1 files 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());
}