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:
parent
cec3b9ff20
commit
05107d6474
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue