Severity Description Resource In Folder Location Creation Time

Unnecessary cast to type int for expression of type char. It is already compatible with the argument type int	EntitiesTest.java	Apache Jakarta Commons/lang/src/test/org/apache/commons/lang	line 130	July 23, 2003 11:22:39 AM


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137501 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2003-07-26 00:31:29 +00:00
parent e81e45f27f
commit 9e100212ce
1 changed files with 3 additions and 2 deletions

View File

@ -63,7 +63,8 @@ import junit.textui.TestRunner;
*
* @author of original StringUtilsTest.testEscape = ?
* @author <a href="mailto:alex@purpletech.com">Alexander Day Chaffee</a>
* @version $Id: EntitiesTest.java,v 1.6 2003/06/29 03:04:33 alex Exp $
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
* @version $Id: EntitiesTest.java,v 1.7 2003/07/26 00:31:29 ggregory Exp $
*/
public class EntitiesTest extends TestCase
{
@ -127,7 +128,7 @@ public class EntitiesTest extends TestCase
public void testEntitiesXmlObject() throws Exception
{
assertEquals("gt", Entities.XML.entityName('>'));
assertEquals((int) '>', Entities.XML.entityValue("gt"));
assertEquals('>', Entities.XML.entityValue("gt"));
assertEquals(-1, Entities.XML.entityValue("xyzzy"));
}