diff src/org/tmatesoft/hg/repo/HgChangelog.java @ 418:528b6780a8bd

A bit of FIXME cleanup (mostly degraded to TODO post 1.0), comments and javadoc
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 22 Mar 2012 21:02:20 +0100
parents 73e875154afb
children 7f136a3fa671
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/HgChangelog.java	Thu Mar 22 20:14:06 2012 +0100
+++ b/src/org/tmatesoft/hg/repo/HgChangelog.java	Thu Mar 22 21:02:20 2012 +0100
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2010-2011 TMate Software Ltd
+ * Copyright (c) 2010-2012 TMate Software Ltd
  *  
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -325,7 +325,7 @@
 			String _comment;
 			try {
 				_comment = new String(data, breakIndex4 + 2, bufferEndIndex - breakIndex4 - 2, "UTF-8");
-				// FIXME respect ui.fallbackencoding and try to decode if set
+				// TODO post-1.0 respect ui.fallbackencoding and try to decode if set; use EncodingHelper
 			} catch (UnsupportedEncodingException ex) {
 				_comment = "";
 				// Could hardly happen