All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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