name.remal.gradle_plugins.toolkit.issues.IssuesParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toolkit Show documentation
Show all versions of toolkit Show documentation
toolkit: toolkit: toolkit
package name.remal.gradle_plugins.toolkit.issues;
import java.io.File;
import java.nio.file.Path;
import java.util.List;
public interface IssuesParser {
List parseIssuesFrom(Path path);
default List parseIssuesFrom(File file) {
return parseIssuesFrom(file.toPath());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy