]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Minor tweak to avoid writing into the ignore_this.java files which confused javadoc
authorKaren Lease <klease@apache.org>
Tue, 14 Nov 2000 23:04:48 +0000 (23:04 +0000)
committerKaren Lease <klease@apache.org>
Tue, 14 Nov 2000 23:04:48 +0000 (23:04 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193803 13f79535-47bb-0310-9956-ffa450edef68

src/codegen/enumgen.xsl
src/codegen/properties.xsl

index 5b1cb9a64cd5eac9ac6053f098b14d8049ad0234..12d2cde716802e5ae82419fc3ee44284c0889740 100644 (file)
@@ -8,6 +8,9 @@
 
 <xsl:output method="text" />
 
+<!-- zap text content -->
+<xsl:template match="text()"/>
+
 <xsl:template match="property[not(@type='generic')]">
  <xsl:variable name="classname">
   <xsl:choose>
index 4b7b9f1c113629786d59729b01cf9ce6f62f69c5..5f0d252ee380dca26de27de525789e79384753a3 100644 (file)
@@ -301,6 +301,9 @@ public class <xsl:value-of select="$classname"/> extends  <xsl:value-of select="
 </xsl:if> <!-- need to create a class -->
 </xsl:template>
 
+<!-- avoid unwanted output to placeholder file -->
+<xsl:template match="localname"/>
+
 </xsl:stylesheet>