Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove executable bit #180

Merged
merged 1 commit into from
Dec 9, 2015
Merged
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 CDL.java
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ of this software and associated documentation files (the "Software"), to deal
* The names for the elements in the JSONObjects can be taken from the names
* in the first row.
* @author JSON.org
* @version 2015-05-01
* @version 2015-12-09
*/
public class CDL {

Expand Down
2 changes: 1 addition & 1 deletion Cookie.java
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ of this software and associated documentation files (the "Software"), to deal
* Convert a web browser cookie specification to a JSONObject and back.
* JSON and Cookies are both notations for name/value pairs.
* @author JSON.org
* @version 2014-05-03
* @version 2015-12-09
*/
public class Cookie {

Expand Down
2 changes: 1 addition & 1 deletion CookieList.java
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ of this software and associated documentation files (the "Software"), to deal
/**
* Convert a web browser cookie list string to a JSONObject and back.
* @author JSON.org
* @version 2014-05-03
* @version 2015-12-09
*/
public class CookieList {

Expand Down
2 changes: 1 addition & 1 deletion HTTP.java
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ of this software and associated documentation files (the "Software"), to deal
/**
* Convert an HTTP header to a JSONObject and back.
* @author JSON.org
* @version 2014-05-03
* @version 2015-12-09
*/
public class HTTP {

Expand Down
2 changes: 1 addition & 1 deletion HTTPTokener.java
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ of this software and associated documentation files (the "Software"), to deal
* The HTTPTokener extends the JSONTokener to provide additional methods
* for the parsing of HTTP headers.
* @author JSON.org
* @version 2014-05-03
* @version 2015-12-09
*/
public class HTTPTokener extends JSONTokener {

Expand Down
2 changes: 1 addition & 1 deletion JSONException.java
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* The JSONException is thrown by the JSON.org classes when things are amiss.
*
* @author JSON.org
* @version 2015-10-18
* @version 2015-12-09
*/
public class JSONException extends RuntimeException {
/** Serialization ID */
Expand Down
2 changes: 1 addition & 1 deletion JSONML.java
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ of this software and associated documentation files (the "Software"), to deal
* the JsonML transform.
*
* @author JSON.org
* @version 2014-05-03
* @version 2015-12-09
*/
public class JSONML {

Expand Down
2 changes: 1 addition & 1 deletion JSONObject.java
100755 → 100644
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
* </ul>
*
* @author JSON.org
* @version 2015-12-05
* @version 2015-12-09
*/
public class JSONObject {
/**
Expand Down
Empty file modified JSONString.java
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion JSONStringer.java
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ of this software and associated documentation files (the "Software"), to deal
* <p>
* This can sometimes be easier than using a JSONObject to build a string.
* @author JSON.org
* @version 2008-09-18
* @version 2015-12-09
*/
public class JSONStringer extends JSONWriter {
/**
Expand Down
2 changes: 1 addition & 1 deletion JSONWriter.java
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ of this software and associated documentation files (the "Software"), to deal
* <p>
* This can sometimes be easier than using a JSONObject to build a string.
* @author JSON.org
* @version 2011-11-24
* @version 2015-12-09
*/
public class JSONWriter {
private static final int maxdepth = 200;
Expand Down
Empty file modified README
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion XML.java
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ of this software and associated documentation files (the "Software"), to deal
* This provides static methods to convert an XML text into a JSONObject,
* and to covert a JSONObject into an XML text.
* @author JSON.org
* @version 2015-10-18
* @version 2015-12-09
*/
public class XML {

Expand Down
2 changes: 1 addition & 1 deletion XMLTokener.java
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ of this software and associated documentation files (the "Software"), to deal
* The XMLTokener extends the JSONTokener to provide additional methods
* for the parsing of XML texts.
* @author JSON.org
* @version 2014-05-03
* @version 2015-12-09
*/
public class XMLTokener extends JSONTokener {

Expand Down