Skip to content

Commit d7deaf8

Browse files
committed
Address API feedback (2).
1 parent fcb6ebb commit d7deaf8

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Firestore/Source/Public/FirebaseFirestore/FIRBsonBinaryData.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ __attribute__((objc_subclassing_restricted))
2727
@interface FIRBsonBinaryData : NSObject<NSCopying>
2828

2929
/** 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;
3131

3232
/** The binary data. */
33-
@property(atomic, copy, readonly) NSData *data;
33+
@property(nonatomic, copy, readonly) NSData *data;
3434

3535
/** :nodoc: */
3636
- (instancetype)init NS_UNAVAILABLE;

Firestore/Source/Public/FirebaseFirestore/FIRBsonObjectId.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ __attribute__((objc_subclassing_restricted))
2727
@interface FIRBsonObjectId : NSObject<NSCopying>
2828

2929
/** The 24-character hex string representation of the ObjectId. */
30-
@property(atomic, copy, readonly) NSString *value;
30+
@property(nonatomic, copy, readonly) NSString *value;
3131

3232
/** :nodoc: */
3333
- (instancetype)init NS_UNAVAILABLE;

Firestore/Source/Public/FirebaseFirestore/FIRBsonTimestamp.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ __attribute__((objc_subclassing_restricted))
2828
@interface FIRBsonTimestamp : NSObject<NSCopying>
2929

3030
/** The underlying unsigned 32-bit integer for seconds */
31-
@property(atomic, readonly) uint32_t seconds;
31+
@property(nonatomic, readonly) uint32_t seconds;
3232

3333
/** The underlying unsigned 32-bit integer for increment */
34-
@property(atomic, readonly) uint32_t increment;
34+
@property(nonatomic, readonly) uint32_t increment;
3535

3636
/** :nodoc: */
3737
- (instancetype)init NS_UNAVAILABLE;

Firestore/Source/Public/FirebaseFirestore/FIRInt32Value.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ __attribute__((objc_subclassing_restricted))
2727
@interface FIRInt32Value : NSObject<NSCopying>
2828

2929
/** The 32-bit integer value. */
30-
@property(atomic, assign, readonly) int32_t value;
30+
@property(nonatomic, readonly) int32_t value;
3131

3232
/** :nodoc: */
3333
- (instancetype)init NS_UNAVAILABLE;

Firestore/Source/Public/FirebaseFirestore/FIRRegexValue.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ __attribute__((objc_subclassing_restricted))
2727
@interface FIRRegexValue : NSObject<NSCopying>
2828

2929
/** The regular expression pattern */
30-
@property(atomic, copy, readonly) NSString *pattern;
30+
@property(nonatomic, copy, readonly) NSString *pattern;
3131

3232
/** The regular expression options */
33-
@property(atomic, copy, readonly) NSString *options;
33+
@property(nonatomic, copy, readonly) NSString *options;
3434

3535
/** :nodoc: */
3636
- (instancetype)init NS_UNAVAILABLE;

0 commit comments

Comments
 (0)