changed BitField to static

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353154 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Said Ryan Ackley 2003-06-24 11:01:39 +00:00
parent 874ab984c7
commit 44fa98a832
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ public abstract class <xsl:value-of select="@name"/>AbstractType
</xsl:for-each>
</xsl:template>
<xsl:template match = "bit" > private BitField <xsl:value-of select="@name"/> = new BitField(<xsl:value-of select="@mask"/>);
<xsl:template match = "bit" > private static BitField <xsl:value-of select="@name"/> = new BitField(<xsl:value-of select="@mask"/>);
</xsl:template>
<xsl:template match = "const"> public final static <xsl:value-of select="@type"/><xsl:text> </xsl:text><xsl:value-of select="@name"/> = <xsl:value-of select="@value"/>;
</xsl:template>