< prev index next >

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

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2008, 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) 2008, 2019, 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
*** 264,273 **** --- 264,276 ---- return false; } else if (code <= 0x0fff) { // U+0F00 - U+0FFF Tibetan return true; } + else if (code < 0x10A0) { // U+1000 - U+109F Myanmar + return true; + } else if (code < 0x1100) { return false; } else if (code < 0x11ff) { // U+1100 - U+11FF Old Hangul return true;
< prev index next >