private Collection getScripts()

in src/main/java/org/apache/sling/commons/fsclassloader/impl/FSClassLoaderMBeanImpl.java [97:109]


	private Collection<String> getScripts() {
		Collection<String> scripts = new HashSet<String>();
		try {
			Map<String, ScriptFiles> s = new LinkedHashMap<String, ScriptFiles>();
			if (root != null) {
				FSClassLoaderWebConsole.readFiles(root, root, s);
			}
			scripts = s.keySet();
		} catch (Exception e) {
			log.warn("Exception retrieving scripts from FSClassLoader", e);
		}
		return scripts;
	}