Ignore:
Timestamp:
2013-07-26T17:24:33+02:00 (11 years ago)
Author:
Don-vip
Message:

see #8902 - c-like array definitions changed to java-like (patch by shinigami)

Location:
trunk/src/org/openstreetmap/josm/plugins
Files:
2 edited

Legend:

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

    r6083 r6085  
    442442    public boolean matches(String filter) {
    443443        if (filter == null) return true;
    444         String words[] = filter.split("\\s+");
     444        String[] words = filter.split("\\s+");
    445445        for (String word: words) {
    446446            if (matches(word, name)
  • trunk/src/org/openstreetmap/josm/plugins/PluginListParser.java

    r5923 r6085  
    8585                }
    8686                addPluginInformation(ret, name, url, manifest.toString());
    87                 String x[] = line.split(";");
     87                String[] x = line.split(";");
    8888                if(x.length != 2)
    8989                    throw new IOException(tr("Illegal entry in plugin list."));
Note: See TracChangeset for help on using the changeset viewer.