Indentation fix

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@788254 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2009-06-25 04:52:32 +00:00
parent cec3b9ff20
commit 05107d6474
1 changed files with 2 additions and 2 deletions

View File

@ -231,7 +231,7 @@ public class StringEscapeUtilsTest extends TestCase {
assertEquals(message, expected, StringEscapeUtils.escapeHtml(original));
StringWriter sw = new StringWriter();
try {
StringEscapeUtils.escapeHtml(sw, original);
StringEscapeUtils.escapeHtml(sw, original);
} catch (IOException e) {
}
String actual = original == null ? null : sw.toString();
@ -248,7 +248,7 @@ public class StringEscapeUtilsTest extends TestCase {
StringWriter sw = new StringWriter();
try {
StringEscapeUtils.unescapeHtml(sw, original);
StringEscapeUtils.unescapeHtml(sw, original);
} catch (IOException e) {
}
String actual = original == null ? null : sw.toString();