Skip to content

Commit 352826f

Browse files
fix: Wrong usage of unescape XML utility method
1 parent 8aaed27 commit 352826f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • modules/tools/editor/src/main/kotlin/dev/turingcomplete/intellijdevelopertoolsplugin/tool/editor

modules/tools/editor/src/main/kotlin/dev/turingcomplete/intellijdevelopertoolsplugin/tool/editor/EscapersUnescapers.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ object EscapersUnescapers {
2727
Unescaper("Java String", { StringEscapeUtils.unescapeJava(it) }),
2828
Unescaper("HTML Entities", { StringEscapeUtils.escapeHtml4(it) }),
2929
Unescaper("JSON Value", { StringEscapeUtils.unescapeJson(it) }),
30-
Unescaper("XML Value", { StringEscapeUtils.unescapeCsv(it) }),
30+
Unescaper("XML Value", { StringEscapeUtils.unescapeXml(it) }),
3131
Unescaper("CSV Value", { StringEscapeUtils.unescapeCsv(it) }),
3232
)
3333

0 commit comments

Comments
 (0)