Ignore:
Timestamp:
2018-12-01T21:27:53+01:00 (5 years ago)
Author:
Don-vip
Message:

fix #16937 - Support user logins ending by " !"

File:
1 edited

Legend:

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

    r14384 r14480  
    422422        String name = pluginName;
    423423        name = name.replaceAll("[-. ]", "");
    424         try (InputStream manifestStream = PluginInformation.class.getResourceAsStream("/org/openstreetmap/josm/plugins/"+name+"/MANIFEST.MF")) {
     424        try (InputStream manifestStream = Utils.getResourceAsStream(
     425                PluginInformation.class, "/org/openstreetmap/josm/plugins/"+name+"/MANIFEST.MF")) {
    425426            if (manifestStream != null) {
    426427                return new PluginInformation(manifestStream, pluginName, null);
Note: See TracChangeset for help on using the changeset viewer.