From 25a077ddae627a1c2f313455b753e573e5a90194 Mon Sep 17 00:00:00 2001 From: Peter Bernard West Date: Wed, 9 Oct 2002 05:53:30 +0000 Subject: [PATCH] Added specific error test for LIST passed to refineParsing(). git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@195308 13f79535-47bb-0310-9956-ffa450edef68 --- src/org/apache/fop/fo/Properties.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/org/apache/fop/fo/Properties.java b/src/org/apache/fop/fo/Properties.java index ae2623970..bddabef80 100644 --- a/src/org/apache/fop/fo/Properties.java +++ b/src/org/apache/fop/fo/Properties.java @@ -424,6 +424,11 @@ public abstract class Properties { if (pv == value) return value; // unable to resolve // TODO: validate here return pv; + case PropertyValue.LIST: + System.out.println((PropertyValueList)value); + throw new PropertyException + ("PropertyValueList passed to Properties.refineParsing for " + + propName); default: if ( ! nested) { if ((datatype & COMPOUND) != 0) -- 2.39.5