We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ceda1a commit 1e88255Copy full SHA for 1e88255
Parse/src/main/java/com/parse/ParseInstallation.java
@@ -150,7 +150,7 @@ public Task<Void> then(Task<Void> task) throws Exception {
150
&& ((ParseException) task.getError()).getCode() == ParseException.OBJECT_NOT_FOUND) {
151
synchronized (mutex) {
152
setObjectId(null);
153
- markAllFieldDirty();
+ markAllFieldsDirty();
154
return ParseInstallation.super.saveAsync(sessionToken, toAwait);
155
}
156
Parse/src/main/java/com/parse/ParseObject.java
@@ -2881,7 +2881,7 @@ private void rebuildEstimatedData() {
2881
2882
2883
2884
- /* package */ void markAllFieldDirty() {
+ /* package */ void markAllFieldsDirty() {
2885
2886
estimatedData.clear();
2887
for (String key : state.keySet()) {
0 commit comments