Ignore:
Timestamp:
2010-08-29T14:55:25+02:00 (14 years ago)
Author:
jttt
Message:

cosmetics

File:
1 edited

Legend:

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

    r3380 r3479  
    77import java.io.ByteArrayInputStream;
    88import java.io.File;
     9import java.io.FileOutputStream;
    910import java.io.FilenameFilter;
    10 import java.io.FileOutputStream;
    1111import java.io.IOException;
    1212import java.io.InputStream;
     
    4848    private List<PluginInformation> availablePlugins;
    4949
    50     protected enum CacheType {PLUGIN_LIST, ICON_LIST};
     50    protected enum CacheType {PLUGIN_LIST, ICON_LIST}
    5151
    5252    protected void init(Collection<String> sites){
     
    6060    /**
    6161     * Creates the task
    62      * 
     62     *
    6363     * @param sites the collection of download sites. Defaults to the empty collection if null.
    6464     */
     
    7070    /**
    7171     * Creates the task
    72      * 
     72     *
    7373     * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null
    7474     * @param sites the collection of download sites. Defaults to the empty collection if null.
     
    9696     * Creates the file name for the cached plugin list and the icon cache
    9797     * file.
    98      * 
     98     *
    9999     * @param site the name of the site
    100100     * @param type icon cache or plugin list cache
     
    122122            }
    123123            switch (type) {
    124                 case PLUGIN_LIST:
    125                     sb.append(".txt");
    126                     break;
    127                 case ICON_LIST:
    128                     sb.append("-icons.zip");
    129                     break;
     124            case PLUGIN_LIST:
     125                sb.append(".txt");
     126                break;
     127            case ICON_LIST:
     128                sb.append("-icons.zip");
     129                break;
    130130            }
    131131            name = sb.toString();
     
    138138    /**
    139139     * Downloads the list from a remote location
    140      * 
     140     *
    141141     * @param site the site URL
    142142     * @param monitor a progress monitor
     
    150150            String pl = Main.pref.getCollectionAsString("plugins");
    151151            String printsite = site.replaceAll("%<(.*)>", "");
    152             if(pl != null && pl.length() != 0)
     152            if(pl != null && pl.length() != 0) {
    153153                site = site.replaceAll("%<(.*)>", "$1"+pl);
    154             else
     154            } else {
    155155                site = printsite;
     156            }
    156157
    157158            monitor.beginTask("");
     
    257258    /**
    258259     * Writes the list of plugins to a cache file
    259      * 
     260     *
    260261     * @param site the site from where the list was downloaded
    261262     * @param list the downloaded list
     
    288289     * Filter information about deprecated plugins from the list of downloaded
    289290     * plugins
    290      * 
     291     *
    291292     * @param plugins the plugin informations
    292293     * @return the plugin informations, without deprecated plugins
     
    306307    /**
    307308     * Parses the plugin list
    308      * 
     309     *
    309310     * @param site the site from where the list was downloaded
    310311     * @param doc the document with the plugin list
     
    335336        for (String location : PluginInformation.getPluginLocations()) {
    336337            File [] f = new File(location).listFiles(
    337                 new FilenameFilter() {
    338                     public boolean accept(File dir, String name) {
    339                         return name.matches("^([0-9]+-)?site.*\\.txt$") ||
    340                                name.matches("^([0-9]+-)?site.*-icons\\.zip$");
     338                    new FilenameFilter() {
     339                        public boolean accept(File dir, String name) {
     340                            return name.matches("^([0-9]+-)?site.*\\.txt$") ||
     341                            name.matches("^([0-9]+-)?site.*-icons\\.zip$");
     342                        }
    341343                    }
    342                 }
    343344            );
    344             if(f != null && f.length > 0)
     345            if(f != null && f.length > 0) {
    345346                siteCacheFiles.addAll(Arrays.asList(f));
     347            }
    346348        }
    347349
     
    382384    /**
    383385     * Replies the list of plugins described in the downloaded plugin lists
    384      * 
     386     *
    385387     * @return  the list of plugins
    386388     */
Note: See TracChangeset for help on using the changeset viewer.