SAM: Allow backslash escapes in parser (tickets #1325, #1488)

remove unneeded escape char in other parsers
This commit is contained in:
zzz
2015-11-28 18:53:40 +00:00
parent 87fa1cb1ac
commit dffd441304
3 changed files with 10 additions and 4 deletions

View File

@ -123,7 +123,7 @@ public class LoadClientAppsJob extends JobImpl {
for (int i = 0; i < data.length; i++) {
switch (data[i]) {
case '\'':
case '\"':
case '"':
if (isQuoted) {
String str = buf.toString().trim();
if (str.length() > 0)