-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Refactor code changes #917
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -328,8 +328,7 @@ public static String valueToString(Object value) throws JSONException { | |
| // Instead we will quote it as a string | ||
| return JSONObject.quote(numberAsString); | ||
| } | ||
| if (value instanceof Boolean || value instanceof JSONObject | ||
| || value instanceof JSONArray) { | ||
| if (isDirectlyConvertibleToJSON(value)) { | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please revert this change. A separate method is not needed for this conditional. You can add a clarification comment if you want. |
||
| return value.toString(); | ||
| } | ||
| if (value instanceof Map) { | ||
|
|
@@ -349,6 +348,10 @@ public static String valueToString(Object value) throws JSONException { | |
| return JSONObject.quote(value.toString()); | ||
| } | ||
|
|
||
| private static boolean isDirectlyConvertibleToJSON(Object value) { | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. General rule: All methods must include JavaDoc comment |
||
| return value instanceof Boolean || value instanceof JSONObject || value instanceof JSONArray; | ||
| } | ||
|
|
||
| /** | ||
| * Append either the value <code>true</code> or the value | ||
| * <code>false</code>. | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please revert all changes to toString(). Refactoring this code is a judgement call. In this case, I trust Douglas Crockford's decision to include all HTTP string conversions in a single method.