Revision: 19603 http://sourceforge.net/p/gate/code/19603 Author: markagreenwood Date: 2016-09-26 14:12:41 +0000 (Mon, 26 Sep 2016) Log Message: ----------- don't use a deprecated method just to give a nice message
Modified Paths: -------------- gate/branches/sawdust2/plugins/Developer_Tools/src/main/java/gate/creole/UnusedPluginUnloader.java Modified: gate/branches/sawdust2/plugins/Developer_Tools/src/main/java/gate/creole/UnusedPluginUnloader.java =================================================================== --- gate/branches/sawdust2/plugins/Developer_Tools/src/main/java/gate/creole/UnusedPluginUnloader.java 2016-09-26 12:46:39 UTC (rev 19602) +++ gate/branches/sawdust2/plugins/Developer_Tools/src/main/java/gate/creole/UnusedPluginUnloader.java 2016-09-26 14:12:41 UTC (rev 19603) @@ -105,7 +105,7 @@ } System.out.println("Plugins unloaded: " + pluginsToUnload.size()); System.out.println("\nPlugins still loaded:"); - for(URL plugin : reg.getDirectories()) { + for(Plugin plugin : reg.getPlugins()) { System.out.println(" " + plugin); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------------ _______________________________________________ GATE-cvs mailing list GATE-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gate-cvs