< prev index next >

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

Print this page
rev 10793 : 8055723: Replace concat String to append in StringBuilder parameters

*** 1892,1904 **** buf.append(" complex"); } } } catch(Exception e) { ! buf.append(" " + e.getMessage()); } ! buf.append("}"); return buf; } static class ADL { --- 1892,1904 ---- buf.append(" complex"); } } } catch(Exception e) { ! buf.append(' ').append(e.getMessage()); } ! buf.append('}'); return buf; } static class ADL {
< prev index next >