Skip to content

Commit

Permalink
Add this keyword to field reference
Browse files Browse the repository at this point in the history
Following the Box coding conventions and using this keyword when referencing field.

Closes box#52.
  • Loading branch information
richiehowelll committed Aug 12, 2020
1 parent 84f9d90 commit a25be0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/box/sdk/BoxJSONObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public abstract class BoxJSONObject {
private JsonObject pendingChanges;

/**
* The current JSON object
* The current JSON object.
*/
private JsonObject jsonObject;

Expand Down Expand Up @@ -226,6 +226,6 @@ private JsonObject getPendingJSONObject() {
*/
@Override
public String toString() {
return jsonObject.toString();
return this.jsonObject.toString();
}
}

0 comments on commit a25be0c

Please sign in to comment.