Ticket #9495: PluginInformation.patch
File PluginInformation.patch, 867 bytes (added by , 11 years ago) |
---|
-
src/org/openstreetmap/josm/plugins/PluginInformation.java
13 13 import java.lang.reflect.InvocationTargetException; 14 14 import java.net.MalformedURLException; 15 15 import java.net.URL; 16 import java.text.MessageFormat; 16 17 import java.util.ArrayList; 17 18 import java.util.Collection; 18 19 import java.util.LinkedList; … … 203 204 Main.info(tr("Invalid plugin description ''{0}'' in plugin {1}", s, name)); 204 205 } 205 206 } 207 } else { 208 s = MessageFormat.format(s, null); 206 209 } 207 210 description = s; 208 211 early = Boolean.parseBoolean(attr.getValue("Plugin-Early"));