Revision 42543 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.compat/org.gvsig.compat.se/src/main/java/org/gvsig/compat/se/net/downloader/se/SEDownloader.java

View differences:

SEDownloader.java
40 40
/**
41 41
 * Clase con m?todos de utilidad en el protocolo WMS
42 42
 *
43
 * @authors Laura D?az, jaume dominguez faus
44 43
 */
45 44
public class SEDownloader implements Downloader {
46 45

  
......
107 106
     * download it again.
108 107
     * </p>
109 108
     *
110
     * @param url
109
     * @param theurl
111 110
     * @return File containing this URL's content or null if no file was found.
112 111
     */
113 112
    private File getPreviousDownloaded(Object theurl) {
......
177 176
     * @param name
178 177
     * @return
179 178
     * @throws IOException
180
     * @throws ServerErrorResponseException
181 179
     * @throws ConnectException
182 180
     * @throws UnknownHostException
183 181
     */
......
418 416
     * Remove an URL from the system cache. The file will remain in the file
419 417
     * system for further eventual uses.
420 418
     *
421
     * @param request
419
     * @param url
422 420
     */
423 421
    public void removeURL(URL url) {
424 422

  
......
440 438
     * Remove an URL from the system cache. The file will remain in the file
441 439
     * system for further eventual uses.
442 440
     *
443
     * @param request
441
     * @param url
444 442
     */
445 443
    public void removeURL(Object url) {
446 444
        if (cachedURItoFile != null && cachedURItoFile.containsKey(url)) {

Also available in: Unified diff