Moving 'todo' to 'TODO' to match general style

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@884486 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2009-11-26 10:17:31 +00:00
parent 63e4b09f23
commit 823eb10825
2 changed files with 2 additions and 3 deletions

View File

@ -289,7 +289,7 @@ public class StringEscapeUtilsTest extends TestCase {
assertEquals("Β", StringEscapeUtils.escapeHtml4("\u0392"));
assertEquals("\u0392", StringEscapeUtils.unescapeHtml4("Β"));
//todo: refine API for escaping/unescaping specific HTML versions
// TODO: refine API for escaping/unescaping specific HTML versions
}

View File

@ -36,12 +36,11 @@ import junit.framework.TestSuite;
* A month with 29 or 30 days will be rounded up from the 16th
* A month with 31 days will be rounded up from the 17th
*
* @todo Add DateUtils.ceil()-tests if method is available
*
* @author Robert Scholte
* @since 3.0
*
*/
// TODO: Add DateUtils.ceil()-tests if method is available
public class DateUtilsRoundingTest extends TestCase {
public static Test suite() {