--- old/src/java.desktop/share/classes/sun/font/FileFontStrike.java 2020-05-20 18:01:46.908126498 -0700 +++ new/src/java.desktop/share/classes/sun/font/FileFontStrike.java 2020-05-20 18:01:46.528119201 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -222,24 +222,6 @@ !((TrueTypeFont)fileFont).useEmbeddedBitmapsForSize(intPtSize)) { useNatives = true; } - else if (fileFont.checkUseNatives() && desc.aaHint==0 && !algoStyle) { - /* Check its a simple scale of a pt size in the range - * where native bitmaps typically exist (6-36 pts) */ - if (matrix[1] == 0.0 && matrix[2] == 0.0 && - matrix[0] >= 6.0 && matrix[0] <= 36.0 && - matrix[0] == matrix[3]) { - useNatives = true; - int numNatives = fileFont.nativeFonts.length; - nativeStrikes = new NativeStrike[numNatives]; - /* Maybe initialise these strikes lazily?. But we - * know we need at least one - */ - for (int i=0; i