]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Vector -> ArrayList
authorPeter Bernard West <pbwest@apache.org>
Tue, 7 May 2002 15:05:46 +0000 (15:05 +0000)
committerPeter Bernard West <pbwest@apache.org>
Tue, 7 May 2002 15:05:46 +0000 (15:05 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@194786 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/configuration/FontInfo.java

index e552e0cd48e0d0b78b95b2b4d605f8e38c148773..db0c96c38d89e4d3a33c21de5ceee07c2c8be4f0 100644 (file)
@@ -8,7 +8,7 @@
 
 package org.apache.fop.configuration;
 
-import java.util.Vector;
+import java.util.ArrayList;
 
 /**
  * FontInfo contains meta information on fonts (where is the metrics file etc.)
@@ -17,10 +17,10 @@ import java.util.Vector;
 public class FontInfo {
     private String metricsFile, embedFile, name;
     private boolean kerning;
-    private Vector fontTriplets;
+    private ArrayList fontTriplets;
 
     public FontInfo(String name, String metricsFile, boolean kerning,
-                    Vector fontTriplets, String embedFile) {
+                    ArrayList fontTriplets, String embedFile) {
         this.name = name;
         this.metricsFile = metricsFile;
         this.embedFile = embedFile;
@@ -40,7 +40,7 @@ public class FontInfo {
         return kerning;
     }
 
-    public Vector getFontTriplets() {
+    public ArrayList getFontTriplets() {
         return fontTriplets;
     }