com.vladsch.flexmark.util.dependency.ResolvedDependencies Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-util-dependency Show documentation
Show all versions of flexmark-util-dependency Show documentation
flexmark-java dependency utility classes
The newest version!
package com.vladsch.flexmark.util.dependency;
import java.util.List;
import java.util.function.Function;
/**
* @deprecated use {@link DependencyResolver#resolveDependencies(List, Function, Function)}
*/
@Deprecated
public class ResolvedDependencies {
private final List dependentStages;
public ResolvedDependencies(List dependentStages) {
this.dependentStages = dependentStages;
}
public List getDependentStages() {
return dependentStages;
}
public boolean isEmpty() {
return getDependentStages().isEmpty();
}
}