Skip to content

Commit 62ff03f

Browse files
committed
removed not needed explicit type argument
1 parent 9367a14 commit 62ff03f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dsf-bpe/dsf-bpe-server/src/main/java/dev/dsf/bpe/plugin/ProcessPluginLoaderImpl.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ public ProcessPluginLoaderImpl(Collection<? extends ProcessPluginFactory> proces
3333
if (processPluginFactories != null)
3434
{
3535
this.processPluginFactories.addAll(processPluginFactories);
36-
this.processPluginFactories.sort(
37-
Comparator.<ProcessPluginFactory> comparingInt(ProcessPluginFactory::getApiVersion).reversed());
36+
this.processPluginFactories.sort(Comparator.comparingInt(ProcessPluginFactory::getApiVersion).reversed());
3837
}
3938

4039
this.pluginDirectory = pluginDirectory;

0 commit comments

Comments
 (0)