Changeset 6571 in josm


Ignore:
Timestamp:
2013-12-31T00:40:12+01:00 (10 years ago)
Author:
simon04
Message:

fix #9495 - patch by holgerosm - Format translated plugin description taken from manifest

File:
1 edited

Legend:

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

    r6380 r6571  
    1414import java.net.MalformedURLException;
    1515import java.net.URL;
     16import java.text.MessageFormat;
    1617import java.util.ArrayList;
    1718import java.util.Collection;
     
    204205                }
    205206            }
     207        } else {
     208            //noinspection NullArgumentToVariableArgMethod
     209            s = MessageFormat.format(s, null);
    206210        }
    207211        description = s;
Note: See TracChangeset for help on using the changeset viewer.