1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2025-09-10 18:59:41 +02:00

more work on generic

add ' quoting
fix IntegerInstantiation is more memory friendly

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@11024 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Michael Will 2009-06-04 11:58:25 +00:00 committed by michael.will
parent 634afb2cad
commit 1edc69780b
7 changed files with 40 additions and 27 deletions

View file

@ -93,6 +93,9 @@ public class StringUtilsTest extends TestCase {
input = "&";
assertEquals("&", StringUtils.escapeForXML(input));
input = "It's a good day today";
assertEquals("It's a good day today", StringUtils.escapeForXML(input));
}
public void testHash() {