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(']');
|
out.print(']');
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
if(root.getType() == JSONType.String){
|
if(root.getString() != null && root.getType() == JSONType.String){
|
||||||
out.print('\"');
|
out.print('\"');
|
||||||
out.print(root.toString());
|
out.print(root.toString());
|
||||||
out.print('\"');
|
out.print('\"');
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue