6869707172737475
public static ProgressBar getProgressBar(boolean interactive) throws IOException { if (interactive && isTerminal()) { return new StandardProgressBar(); } else { return new NullProgressBar(); } }