< prev index next >

src/java.desktop/share/classes/sun/font/GlyphLayout.java

Print this page
rev 60064 : 8248802: Add log helper methods to FontUtilities.java

*** 1,7 **** /* ! * Copyright (c) 2003, 2014, 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 476,487 **** // a complete blank layout. StandardGlyphVector gv; if (_gvdata._count < 0) { gv = new StandardGlyphVector(font, text, offset, count, frc); if (FontUtilities.debugFonts()) { ! FontUtilities.getLogger().warning("OpenType layout failed on font: " + ! font); } } else { gv = _gvdata.createGlyphVector(font, frc, result); } // System.err.println("Layout returns: " + gv); --- 476,486 ---- // a complete blank layout. StandardGlyphVector gv; if (_gvdata._count < 0) { gv = new StandardGlyphVector(font, text, offset, count, frc); if (FontUtilities.debugFonts()) { ! FontUtilities.logWarning("OpenType layout failed on font: " + font); } } else { gv = _gvdata.createGlyphVector(font, frc, result); } // System.err.println("Layout returns: " + gv);
< prev index next >