Skip to content

Commit 9951313

Browse files
committed
Fix U.Builder.toJson() method.
1 parent 8c255f1 commit 9951313

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/github/underscore/lodash

1 file changed

+1
-1
lines changed

src/main/java/com/github/underscore/lodash/U.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2297,7 +2297,7 @@ public static Builder fromXml(final String xml) {
22972297
}
22982298

22992299
public String toJson() {
2300-
return Xml.toXml(data);
2300+
return Json.toJson(data);
23012301
}
23022302

23032303
public static Builder fromJson(final String json) {

0 commit comments

Comments
 (0)