File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
fontbox/src/test/java/org/apache/fontbox/ttf/gsub Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 2222import java .util .Collections ;
2323import java .util .List ;
2424
25- import org .apache .fontbox .ttf .CmapLookup ;
2625import org .apache .fontbox .ttf .model .GsubData ;
2726import org .apache .fontbox .ttf .model .ScriptFeature ;
2827
@@ -43,12 +42,10 @@ public class GsubWorkerForAalt implements GsubWorker
4342
4443 private static final List <String > FEATURES_IN_ORDER = Arrays .asList ("aalt" );
4544
46- private final CmapLookup cmapLookup ;
4745 private final GsubData gsubData ;
4846
49- GsubWorkerForAalt (CmapLookup cmapLookup , GsubData gsubData )
47+ GsubWorkerForAalt (GsubData gsubData )
5048 {
51- this .cmapLookup = cmapLookup ;
5249 this .gsubData = gsubData ;
5350 }
5451
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ void testFoglihtenNo07() throws IOException
4949 new RandomAccessReadBufferedFile ("src/test/resources/otf/FoglihtenNo07.otf" )))
5050 {
5151 cmapLookup = ttf .getUnicodeCmapLookup ();
52- gsubWorkerForAlt = new GsubWorkerForAalt (cmapLookup , ttf .getGsubData ());
52+ gsubWorkerForAlt = new GsubWorkerForAalt (ttf .getGsubData ());
5353 }
5454
5555 // Values should be the same you get by looking at the GSUB lookup lists 12 or 13 with
You can’t perform that action at this time.
0 commit comments