diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2023-07-15 21:52:10 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2023-07-16 12:07:17 +0200 |
commit | 5ae47ac0a750dd7220c74daa4bdcd5a3e92924f7 (patch) | |
tree | dd6d65c8bee72a94ab301aa74cf736ae749b4463 /tools | |
parent | a0d12dcb83e75c33d0fa6c64d4f749ef8baa1b1e (diff) |
cid#1537992 deadcode
since 16b0da38515467bf1819ccd88027934481cc5727
jsdialog: encode properly control characters
Change-Id: Ic447a819d3d0b3f9ff66e00f0b05a037ec53a9cd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154488
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/misc/json_writer.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/source/misc/json_writer.cxx b/tools/source/misc/json_writer.cxx index 6e8cd7eafe86..e3e27bf756b4 100644 --- a/tools/source/misc/json_writer.cxx +++ b/tools/source/misc/json_writer.cxx @@ -146,11 +146,6 @@ static bool writeEscapedSequence(sal_uInt32 ch, char*& pos) switch (ch) { - case '\b': - case '\t': - case '\n': - case '\f': - case '\r': case '"': case '/': case '\\': |