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

Print this page
rev 10525 : 8038277: Improve the bootstrap performance of cacerts keystore (client)
Contributed-by: Otavio Santana <otaviojava@java.net>

@@ -1892,13 +1892,13 @@
                     buf.append(" complex");
                 }
             }
         }
         catch(Exception e) {
-            buf.append(" " + e.getMessage());
+            buf.append(' ').append(e.getMessage());
         }
-        buf.append("}");
+        buf.append('}');
 
         return buf;
     }
 
     static class ADL {