aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-02-12 00:15:50 +0100
committerSven Gothel <[email protected]>2023-02-12 00:23:01 +0100
commitf43c13de9e4dd2e2ba92da23191730bdf51b61c5 (patch)
tree9b8c37ef1189f539eaeb172ac3183e68cac80d35
parent387204ef519447e099e5d8b6edc0154efd342cd1 (diff)
OTFontCollection: Make class public for general use
-rw-r--r--src/main/java/net/java/dev/typecast/ot/OTFontCollection.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/java/net/java/dev/typecast/ot/OTFontCollection.java b/src/main/java/net/java/dev/typecast/ot/OTFontCollection.java
index f61dd33..e235bbf 100644
--- a/src/main/java/net/java/dev/typecast/ot/OTFontCollection.java
+++ b/src/main/java/net/java/dev/typecast/ot/OTFontCollection.java
@@ -35,8 +35,7 @@ import net.java.dev.typecast.ot.table.TTCHeader;
*
* @author <a href="mailto:[email protected]">David Schweinsberg</a>
*/
-class OTFontCollection {
-
+public class OTFontCollection {
private final boolean DEBUG = false;
private TTCHeader _ttcHeader;
private OTFont[] _fonts;