--- old/src/java.desktop/share/classes/sun/font/TrueTypeFont.java 2015-11-12 21:21:21.000000000 -0800 +++ new/src/java.desktop/share/classes/sun/font/TrueTypeFont.java 2015-11-12 21:21:21.000000000 -0800 @@ -874,8 +874,8 @@ } } - /* NB: is it better to move declaration to Font2D? */ - long getLayoutTableCache() { + @Override + protected long getLayoutTableCache() { try { return getScaler().getLayoutTableCache(); } catch(FontScalerException fe) { @@ -884,7 +884,7 @@ } @Override - byte[] getTableBytes(int tag) { + protected byte[] getTableBytes(int tag) { ByteBuffer buffer = getTableBuffer(tag); if (buffer == null) { return null;