wrap up TODOs
[fanfix.git] / src / jexer / teditor / Document.java
index ffbe0816bd1e80b2c4639e7253b8b4dc3f50b8eb..a9979f5a17d4a375197dac4bb7b09e3bcd405060 100644 (file)
@@ -89,7 +89,8 @@ public class Document {
     public Document(final String str, final CellAttributes defaultColor) {
         this.defaultColor = defaultColor;
 
-        // TODO: set different colors based on file extension
+        // Set colors to resemble the Borland IDE colors, but for Java
+        // language keywords.
         highlighter.setJavaColors();
 
         String [] rawLines = str.split("\n");