Remove more hidden file leniency from plugins

This commit removes one more instance of leniency from the plugin
service which skips hidden files in the plugins directory.

Relates #23982
This commit is contained in:
Jason Tedor 2017-04-12 22:23:42 -04:00
parent edd16fa27e
commit 12b46bdbc4
1 changed files with 0 additions and 3 deletions

View File

@ -270,9 +270,6 @@ public class PluginsService extends AbstractComponent {
Set<Bundle> bundles = new LinkedHashSet<>();
try (DirectoryStream<Path> stream = Files.newDirectoryStream(modulesDirectory)) {
for (Path module : stream) {
if (FileSystemUtils.isHidden(module)) {
continue; // skip over .DS_Store etc
}
PluginInfo info = PluginInfo.readFromProperties(module);
Set<URL> urls = new LinkedHashSet<>();
// gather urls for jar files