-
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
Refactor code changes #917
Conversation
| } | ||
| if (value instanceof Boolean || value instanceof JSONObject | ||
| || value instanceof JSONArray) { | ||
| if (isDirectlyConvertibleToJSON(value)) { |
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 this change. A separate method is not needed for this conditional. You can add a clarification comment if you want.
| return JSONObject.quote(value.toString()); | ||
| } | ||
|
|
||
| private static boolean isDirectlyConvertibleToJSON(Object value) { |
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.
General rule: All methods must include JavaDoc comment
| sb.append(jo.getString("Status-Code")); | ||
| sb.append(' '); | ||
| sb.append(jo.getString("Reason-Phrase")); | ||
| appendResponseHeader(sb, jo); |
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.
|
@devpatel43543 review comments added. The changes to JSONObject look good. All else should be reverted. |
|
Closing, please see How do you decide which pull requests to accept |
hii @stleary
i have refactored changes in following 3 files to enhance readability and maintainability:
[Decompose Conditional] in
valueToString()(JSONWriter.java):isDirectlyConvertibleToJSON()) to improve readability.Commit
[Extract Method] in
toString()(HTTP.java):Commit
[Rename Variable] in
JSONObject:x→jsonTokener,c→currentChar) for better clarity and readability.