We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9367a14 commit 62ff03fCopy full SHA for 62ff03f
dsf-bpe/dsf-bpe-server/src/main/java/dev/dsf/bpe/plugin/ProcessPluginLoaderImpl.java
@@ -33,8 +33,7 @@ public ProcessPluginLoaderImpl(Collection<? extends ProcessPluginFactory> proces
33
if (processPluginFactories != null)
34
{
35
this.processPluginFactories.addAll(processPluginFactories);
36
- this.processPluginFactories.sort(
37
- Comparator.<ProcessPluginFactory> comparingInt(ProcessPluginFactory::getApiVersion).reversed());
+ this.processPluginFactories.sort(Comparator.comparingInt(ProcessPluginFactory::getApiVersion).reversed());
38
}
39
40
this.pluginDirectory = pluginDirectory;
0 commit comments