Skip to content

Commit

Permalink
Remove unused method
Browse files Browse the repository at this point in the history
Signed-off-by: Craig Perkins <[email protected]>
  • Loading branch information
cwperks committed Jan 13, 2025
1 parent bb44286 commit 4a884f2
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -833,8 +833,4 @@ private String signatureMessage(final Class<? extends Plugin> clazz) {
public <T> List<T> filterPlugins(Class<T> type) {
return plugins.stream().filter(x -> type.isAssignableFrom(x.v2().getClass())).map(p -> ((T) p.v2())).collect(Collectors.toList());
}

public <T> List<PluginInfo> filterPluginInfos(Class<T> type) {
return plugins.stream().filter(x -> type.isAssignableFrom(x.v2().getClass())).map(Tuple::v1).collect(Collectors.toList());
}
}

0 comments on commit 4a884f2

Please sign in to comment.