From 6f9112e7c8708b58d8965adb4f123fc1842bafdd Mon Sep 17 00:00:00 2001 From: "Andreas L. Delmelle" Date: Sun, 28 Aug 2005 21:19:24 +0000 Subject: [PATCH] Added warning for unimplemented feature git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@263923 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/fop/fo/flow/Table.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/java/org/apache/fop/fo/flow/Table.java b/src/java/org/apache/fop/fo/flow/Table.java index 45182c71d..bb9f126e2 100644 --- a/src/java/org/apache/fop/fo/flow/Table.java +++ b/src/java/org/apache/fop/fo/flow/Table.java @@ -141,6 +141,9 @@ public class Table extends FObj { getLogger().warn("The collapsing border model on an fo:table " + "is currently not supported by FOP"); } + if( tableLayout == EN_AUTO ) { + getLogger().warn("table-layout=\"auto\" is currently not supported by FOP"); + } } /** -- 2.39.5