diff options
author | eschaeffer <eschaeffer@unknown> | 2001-01-25 15:12:20 +0000 |
---|---|---|
committer | eschaeffer <eschaeffer@unknown> | 2001-01-25 15:12:20 +0000 |
commit | b79de26b90781590eb0eef696d2c8a70efb021a5 (patch) | |
tree | 483e9003e86178c53d1e7f21846aeb888b45484d /src/org/apache/fop/layout/FontState.java | |
parent | 2927de757166c41a845ecd68a360c73b14e77017 (diff) | |
download | xmlgraphics-fop-b79de26b90781590eb0eef696d2c8a70efb021a5.tar.gz xmlgraphics-fop-b79de26b90781590eb0eef696d2c8a70efb021a5.zip |
Add font-variant property, change constructor.
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193988 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/layout/FontState.java')
-rw-r--r-- | src/org/apache/fop/layout/FontState.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/org/apache/fop/layout/FontState.java b/src/org/apache/fop/layout/FontState.java index 3794db88a..4d28f93ac 100644 --- a/src/org/apache/fop/layout/FontState.java +++ b/src/org/apache/fop/layout/FontState.java @@ -64,9 +64,6 @@ public class FontState { private FontMetric metric; private int fontVariant; - public FontState(FontInfo fontInfo, String fontFamily, String fontStyle, String fontWeight, int fontSize) throws FOPException { - this(fontInfo, fontFamily, fontStyle, fontWeight, fontSize, FontVariant.NORMAL); - } public FontState(FontInfo fontInfo, String fontFamily, String fontStyle, String fontWeight, int fontSize, int fontVariant) throws FOPException { this.fontInfo = fontInfo; this.fontFamily = fontFamily; |