Parser: Allow '=' in values

This commit is contained in:
zzz
2015-11-28 23:21:20 +00:00
parent 1db7613519
commit a5a702744f

View File

@ -266,6 +266,9 @@ class SAMUtils {
case '=':
if (isQuoted) {
buf.append(c);
} else if (key != null) {
// '=' in a value
buf.append(c);
} else {
if (buf.length() == 0)
throw new SAMException("Empty parameter name");