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:25:44 +08:00 committed by hengyunabc
parent 64dca1786b
commit 78816cdb4e

View File

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