Skip to content

Commit 1e88255

Browse files
hermanliangrogerhu
authored andcommitted
fix typo (#602)
1 parent 0ceda1a commit 1e88255

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Parse/src/main/java/com/parse/ParseInstallation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ public Task<Void> then(Task<Void> task) throws Exception {
150150
&& ((ParseException) task.getError()).getCode() == ParseException.OBJECT_NOT_FOUND) {
151151
synchronized (mutex) {
152152
setObjectId(null);
153-
markAllFieldDirty();
153+
markAllFieldsDirty();
154154
return ParseInstallation.super.saveAsync(sessionToken, toAwait);
155155
}
156156
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2881,7 +2881,7 @@ private void rebuildEstimatedData() {
28812881
}
28822882
}
28832883

2884-
/* package */ void markAllFieldDirty() {
2884+
/* package */ void markAllFieldsDirty() {
28852885
synchronized (mutex) {
28862886
estimatedData.clear();
28872887
for (String key : state.keySet()) {

0 commit comments

Comments
 (0)