File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed
Firestore/Source/Public/FirebaseFirestore Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ __attribute__((objc_subclassing_restricted))
27
27
@interface FIRBsonBinaryData : NSObject<NSCopying>
28
28
29
29
/* * An 8-bit unsigned integer denoting the subtype of the data. */
30
- @property(atomic , readonly) uint8_t subtype;
30
+ @property(nonatomic , readonly) uint8_t subtype;
31
31
32
32
/* * The binary data. */
33
- @property(atomic , copy, readonly) NSData *data;
33
+ @property(nonatomic , copy, readonly) NSData *data;
34
34
35
35
/* * :nodoc: */
36
36
- (instancetype )init NS_UNAVAILABLE;
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ __attribute__((objc_subclassing_restricted))
27
27
@interface FIRBsonObjectId : NSObject<NSCopying>
28
28
29
29
/* * The 24-character hex string representation of the ObjectId. */
30
- @property(atomic , copy, readonly) NSString *value;
30
+ @property(nonatomic , copy, readonly) NSString *value;
31
31
32
32
/* * :nodoc: */
33
33
- (instancetype )init NS_UNAVAILABLE;
Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ __attribute__((objc_subclassing_restricted))
28
28
@interface FIRBsonTimestamp : NSObject<NSCopying>
29
29
30
30
/* * The underlying unsigned 32-bit integer for seconds */
31
- @property(atomic , readonly) uint32_t seconds;
31
+ @property(nonatomic , readonly) uint32_t seconds;
32
32
33
33
/* * The underlying unsigned 32-bit integer for increment */
34
- @property(atomic , readonly) uint32_t increment;
34
+ @property(nonatomic , readonly) uint32_t increment;
35
35
36
36
/* * :nodoc: */
37
37
- (instancetype )init NS_UNAVAILABLE;
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ __attribute__((objc_subclassing_restricted))
27
27
@interface FIRInt32Value : NSObject<NSCopying>
28
28
29
29
/* * The 32-bit integer value. */
30
- @property(atomic, assign , readonly) int32_t value;
30
+ @property(nonatomic , readonly) int32_t value;
31
31
32
32
/* * :nodoc: */
33
33
- (instancetype )init NS_UNAVAILABLE;
Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ __attribute__((objc_subclassing_restricted))
27
27
@interface FIRRegexValue : NSObject<NSCopying>
28
28
29
29
/* * The regular expression pattern */
30
- @property(atomic , copy, readonly) NSString *pattern;
30
+ @property(nonatomic , copy, readonly) NSString *pattern;
31
31
32
32
/* * The regular expression options */
33
- @property(atomic , copy, readonly) NSString *options;
33
+ @property(nonatomic , copy, readonly) NSString *options;
34
34
35
35
/* * :nodoc: */
36
36
- (instancetype )init NS_UNAVAILABLE;
You can’t perform that action at this time.
0 commit comments