1
0
Fork 0

Merge pull request #45 from oslucchi/master

Added securitylevel as handled Field type.
master
Bob Carroll 2014-10-14 22:52:30 -07:00
commit db94f05235
1 changed files with 1 additions and 1 deletions

View File

@ -586,7 +586,7 @@ public final class Field {
json.put(ValueType.KEY.toString(), value.toString());
return json.toString();
} else if (m.type.equals("string")) {
} else if (m.type.equals("string") || (m.type.equals("securitylevel"))) {
if (value == null)
return "";
else if (value instanceof List)