X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fteditor%2FHighlighter.java;h=44a2ed08c705a43584aaea1c0e22bd1ab1ff85c7;hb=564040def0ab28b40a9571aca3622643e28451f4;hp=a48419455e541697e12da7dfd81ebb8db52d7e9e;hpb=2d3f60d832e59424fa5159b1a2d68e7a8eccae33;p=fanfix.git diff --git a/src/jexer/teditor/Highlighter.java b/src/jexer/teditor/Highlighter.java index a484194..44a2ed0 100644 --- a/src/jexer/teditor/Highlighter.java +++ b/src/jexer/teditor/Highlighter.java @@ -87,7 +87,7 @@ public class Highlighter { * @return color associated with name, e.g. bold yellow on blue */ public CellAttributes getColor(final String name) { - CellAttributes attr = (CellAttributes) colors.get(name); + CellAttributes attr = colors.get(name); return attr; }