![JAR search and dependency download from the Maven repository](/logo.png)
io.tesla.maven.plugins.dependency.tree.serializer.AbstractRenderer Maven / Gradle / Ivy
The newest version!
package io.tesla.maven.plugins.dependency.tree.serializer;
import java.io.PrintStream;
public abstract class AbstractRenderer implements TreeRenderer {
protected PrintStream out;
public AbstractRenderer() {
this(null);
}
public AbstractRenderer(PrintStream out) {
this.out = (out != null) ? out : System.out;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy