fusesource / jansi

Jansi is a small java library that allows you to use ANSI escape sequences to format your console output which works even on windows.
http://fusesource.github.io/jansi/
Apache License 2.0
1.11k stars 140 forks source link

class NoAnsi is missing override methods #215

Closed cbcmg closed 3 years ago

cbcmg commented 3 years ago

NoAnsi has

public Ansi fg(Color color) {return this;}

but not

public Ansi fgRgb(int color){return this;}

which means when Ansi.setEnabled(false) and e.g. println(ansi().fgRgb(0x808080).a(x).reset() escape sequences are still output