Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion JSONArray.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ of this software and associated documentation files (the "Software"), to deal
* @author JSON.org
* @version 2013-04-18
*/
public class JSONArray {
public class JSONArray implements java.io.Serializable {

/**
* The arrayList where the JSONArray's properties are kept.
Expand Down
2 changes: 1 addition & 1 deletion JSONObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ of this software and associated documentation files (the "Software"), to deal
* @author JSON.org
* @version 2013-06-17
*/
public class JSONObject {
public class JSONObject implements java.io.Serializable {
/**
* JSONObject.NULL is equivalent to the value that JavaScript calls null,
* whilst Java's null is equivalent to the value that JavaScript calls
Expand Down