Skip to content

Commit 0f1c665

Browse files
committed
Convert PFFile.isDirty to a property.
1 parent 5d92277 commit 0f1c665

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Parse/PFFile.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ NS_ASSUME_NONNULL_BEGIN
145145
/*!
146146
@abstract Whether the file has been uploaded for the first time.
147147
*/
148-
@property (nonatomic, assign, readonly) BOOL isDirty;
148+
@property (nonatomic, assign, readonly, getter=isDirty) BOOL dirty;
149149

150150
///--------------------------------------
151151
/// @name Storing Data with Parse

Parse/PFFile.m

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ @interface PFFile () {
3737

3838
@property (nonatomic, strong, readwrite) PFFileState *state;
3939
@property (nonatomic, copy, readonly) NSString *stagedFilePath;
40-
@property (nonatomic, assign, readonly, getter=isDirty) BOOL dirty;
4140

4241
//
4342
// Private

0 commit comments

Comments
 (0)