View | Details | Raw Unified | Return to bug 95285 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/update/internal/configurator/PlatformConfiguration.java (+15 lines)
Lines 414-419 Link Here
414
		return (URL[]) path.toArray(new URL[0]);
414
		return (URL[]) path.toArray(new URL[0]);
415
	}
415
	}
416
	
416
	
417
	public Set getPluginPaths() {
418
		
419
		HashSet paths = new HashSet();
420
		ISiteEntry[] sites = getConfiguredSites();
421
422
		for (int i = 0; i < sites.length; i++) {
423
			String[] plugins = sites[i].getPlugins();
424
			for (int j = 0; j < plugins.length; j++) {
425
					paths.add(plugins[j]);
426
			}
427
		}
428
		
429
		return paths;
430
	}
431
	
417
432
418
	/*
433
	/*
419
	 * A variation of the getPluginPath, but it returns the actual plugin entries
434
	 * A variation of the getPluginPath, but it returns the actual plugin entries

Return to bug 95285