Ignore:
Timestamp:
2014-02-07T01:03:57+01:00 (10 years ago)
Author:
bastiK
Message:

see #8902 - Small performance enhancements / coding style (patch by shinigami, updated, modified)

stringbuilder.diff: StringBuffer => StringBuilder

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java

    r6797 r6822  
    761761
    762762    private static void alertFailedPluginUpdate(Component parent, Collection<PluginInformation> plugins) {
    763         StringBuffer sb = new StringBuffer();
     763        StringBuilder sb = new StringBuilder();
    764764        sb.append("<html>");
    765765        sb.append(trn(
     
    11391139        };
    11401140
    1141         final StringBuffer msg = new StringBuffer();
     1141        final StringBuilder msg = new StringBuilder();
    11421142        msg.append("<html>");
    11431143        msg.append(tr("An unexpected exception occurred that may have come from the ''{0}'' plugin.", plugin.getPluginInformation().name));
Note: See TracChangeset for help on using the changeset viewer.