bugfix
This commit is contained in:
parent
5252f04451
commit
7176c87c08
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ public class JSONWriter{
|
|||
out.print(']');
|
||||
break;
|
||||
default:
|
||||
if(root.getType() == JSONType.String){
|
||||
if(root.getString() != null && root.getType() == JSONType.String){
|
||||
out.print('\"');
|
||||
out.print(root.toString());
|
||||
out.print('\"');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue