X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fbits%2FCell.java;h=eaaab6b7695c5a17b16d775545e0264df8a5df8c;hb=8a632d71fde904c0a9f49259105aa90f5fbe2fea;hp=957ac7656f8c5e2fb34324ef792b5d97e943c42b;hpb=6358f6e567422c8a5e880af36bec9ea798cc2cd4;p=fanfix.git diff --git a/src/jexer/bits/Cell.java b/src/jexer/bits/Cell.java index 957ac76..eaaab6b 100644 --- a/src/jexer/bits/Cell.java +++ b/src/jexer/bits/Cell.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2016 Kevin Lamonte + * Copyright (C) 2017 Kevin Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -178,7 +178,7 @@ public final class Cell extends CellAttributes { */ @Override public String toString() { - return String.format("fore: %d back: %d bold: %s blink: %s ch %c", + return String.format("fore: %s back: %s bold: %s blink: %s ch %c", getForeColor(), getBackColor(), isBold(), isBlink(), ch); } }