Skip to content

Commit f046475

Browse files
committed
Run spotlessApply
1 parent 6a2da43 commit f046475

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

parse/src/main/java/com/parse/ParseObject.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1475,8 +1475,8 @@ public Date getCreatedAt() {
14751475
* Returns a set view of the keys contained in this object. This does not include createdAt,
14761476
* updatedAt, authData, or objectId. It does include things like username and ACL.
14771477
*
1478-
* Note that while the returned set is unmodifiable, it is in fact not thread-safe, and creating a copy
1479-
* is recommended before iterating over it.
1478+
* <p>Note that while the returned set is unmodifiable, it is in fact not thread-safe, and
1479+
* creating a copy is recommended before iterating over it.
14801480
*/
14811481
public Set<String> keySet() {
14821482
synchronized (mutex) {

parse/src/main/java/com/parse/ParseTraverser.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,15 @@
88
*/
99
package com.parse;
1010

11-
import org.json.JSONArray;
12-
import org.json.JSONException;
13-
import org.json.JSONObject;
14-
1511
import java.util.HashSet;
1612
import java.util.IdentityHashMap;
1713
import java.util.Iterator;
1814
import java.util.List;
1915
import java.util.Map;
2016
import java.util.Set;
17+
import org.json.JSONArray;
18+
import org.json.JSONException;
19+
import org.json.JSONObject;
2120

2221
/**
2322
* Subclass ParseTraverser to make an function to be run recursively on every object pointed to on

0 commit comments

Comments
 (0)