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

Print this page
rev 10536 : 8055723[client]: Replace concat String to append in StringBuilder parameters
Contributed-by: Otavio Santana <otaviojava@java.net>

*** 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 {