@@ -134,7 +134,7 @@ + (BOOL)isLocalId:(NSString *)localId {
134134/* *
135135 * Grabs one entry in the local id map off the disk.
136136 */
137- - (PFObjectLocalIdStoreMapEntry *)getMapEntry : (NSString *)localId error : (NSError **) error {
137+ - (PFObjectLocalIdStoreMapEntry *)getMapEntry : (NSString *)localId error : (NSError * __autoreleasing *) error {
138138
139139 PFConsistencyError (error, [[self class ] isLocalId: localId], nil , @" Tried to get invalid local id: \" %@ \" ." , localId);
140140
@@ -167,7 +167,7 @@ - (PFObjectLocalIdStoreMapEntry *)getMapEntry:(NSString *)localId error:(NSError
167167/* *
168168 * Writes one entry to the local id map on disk.
169169 */
170- - (BOOL )putMapEntry : (PFObjectLocalIdStoreMapEntry *)entry forLocalId : (NSString *)localId error : (NSError **)error {
170+ - (BOOL )putMapEntry : (PFObjectLocalIdStoreMapEntry *)entry forLocalId : (NSString *)localId error : (NSError * __autoreleasing *)error {
171171 PFConsistencyError (error, [[self class ] isLocalId: localId], NO , @" Tried to get invalid local id: \" %@ \" ." , localId);
172172
173173 NSString *file = [_diskPath stringByAppendingPathComponent: localId];
@@ -178,7 +178,7 @@ - (BOOL)putMapEntry:(PFObjectLocalIdStoreMapEntry *)entry forLocalId:(NSString *
178178/* *
179179 * Removes an entry from the local id map on disk.
180180 */
181- - (BOOL )removeMapEntry : (NSString *)localId error : (NSError **)error {
181+ - (BOOL )removeMapEntry : (NSString *)localId error : (NSError * __autoreleasing *)error {
182182 PFConsistencyError (error, [[self class ] isLocalId: localId], NO , @" Tried to get invalid local id: \" %@ \" ." , localId);
183183
184184 NSString *file = [_diskPath stringByAppendingPathComponent: localId];
0 commit comments