Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@

import org.apache.maven.di.Key;

import static java.util.stream.Collectors.joining;

public abstract class Binding<T> {
private final Set<Dependency<?>> dependencies;
private Annotation scope;
Expand Down Expand Up @@ -128,10 +126,6 @@ public Annotation getScope() {
return scope;
}

public String getDisplayString() {
return dependencies.stream().map(Dependency::getDisplayString).collect(joining(", ", "[", "]"));
}

public Key<?> getOriginalKey() {
return originalKey;
}
Expand Down