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

This commit is contained in:
Bruce
2019-01-06 15:27:10 +08:00
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() {