update method of com.taobao.arthas.core.view.Ansi#bgCyan from this.fg(Color.CYAN) to this.bg(Color.CYAN) fix #427

pull/431/head
Bruce 6 years ago committed by hengyunabc
parent 64dca1786b
commit 78816cdb4e

@ -391,7 +391,7 @@ public class Ansi {
}
public Ansi bgCyan() {
return this.fg(Color.CYAN);
return this.bg(Color.CYAN);
}
public Ansi bgDefault() {

Loading…
Cancel
Save