From: Glen Mazza Date: Sat, 17 Jan 2004 15:37:27 +0000 (+0000) Subject: (Property Interface consolidation) Removed a redundancy in interface X-Git-Tag: Root_Temp_KnuthStylePageBreaking~914 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=506246bf703c01958f15461da26fc26e427438aa;p=xmlgraphics-fop.git (Property Interface consolidation) Removed a redundancy in interface definitions: from here (for several of the interfaces): public interface KeepWithNext { public interface WithinPage extends GenericKeep.Enums.WithinPage { } public interface WithinLine extends GenericKeep.Enums.WithinLine { } public interface WithinColumn extends GenericKeep.Enums.WithinColumn { } } to here: public interface KeepWithNext extends GenericKeep.Enums { } git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197211 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/codegen/prop-val-enum-interfaces.xsl b/src/codegen/prop-val-enum-interfaces.xsl index 8f942f4d8..7109e786a 100644 --- a/src/codegen/prop-val-enum-interfaces.xsl +++ b/src/codegen/prop-val-enum-interfaces.xsl @@ -92,7 +92,7 @@ import org.apache.fop.fo.Constants; public interface - + extends .Enums @@ -106,9 +106,6 @@ import org.apache.fop.fo.Constants; ; - - - }