use of jack.rm.plugins.types.CleanupPlugin in project rom-manager by Jakz.
the class Organizer method cleanup.
public void cleanup() {
MyGameSetFeatures helper = set.helper();
Settings settings = helper.settings();
Set<CleanupPlugin> plugins = settings.plugins.getEnabledPlugins(PluginRealType.ROMSET_CLEANUP);
plugins.stream().forEach(p -> p.execute(set));
}
Aggregations