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