summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Rex <julian.rex@mapbox.com>2019-09-25 23:51:47 -0400
committerJulian Rex <julian.rex@mapbox.com>2019-10-03 23:11:39 -0400
commit8e62a5bb0028fb600bdbb6d5438a1032c8fa9ee0 (patch)
tree714b467095ff0ade1e10e3348992dbb674b9c78f
parent612feccefd40d460451dd3673761224ffe68ef13 (diff)
downloadqtlocation-mapboxgl-8e62a5bb0028fb600bdbb6d5438a1032c8fa9ee0.tar.gz
[ios] Removes redundant property attribute
-rw-r--r--platform/ios/src/MGLScaleBar.mm8
1 files changed, 4 insertions, 4 deletions
diff --git a/platform/ios/src/MGLScaleBar.mm b/platform/ios/src/MGLScaleBar.mm
index 6655ea4fcd..3efa80013f 100644
--- a/platform/ios/src/MGLScaleBar.mm
+++ b/platform/ios/src/MGLScaleBar.mm
@@ -75,9 +75,9 @@ static const MGLRow MGLImperialTable[] ={
@class MGLScaleBarLabel;
@interface MGLScaleBar()
-@property (nonatomic, readwrite) NSArray<UIView *> *labelViews;
-@property (nonatomic, readwrite) NSArray<UIView *> *bars;
-@property (nonatomic, readwrite) UIView *containerView;
+@property (nonatomic) NSArray<UIView *> *labelViews;
+@property (nonatomic) NSArray<UIView *> *bars;
+@property (nonatomic) UIView *containerView;
@property (nonatomic) MGLDistanceFormatter *formatter;
@property (nonatomic, assign) MGLRow row;
@property (nonatomic) UIColor *primaryColor;
@@ -86,7 +86,7 @@ static const MGLRow MGLImperialTable[] ={
@property (nonatomic) NSMutableDictionary* labelImageCache;
@property (nonatomic) MGLScaleBarLabel* prototypeLabel;
@property (nonatomic) CGFloat lastLabelWidth;
-@property (nonatomic, readwrite) CGSize size;
+@property (nonatomic) CGSize size;
@property (nonatomic) BOOL recalculateSize;
@property (nonatomic) BOOL shouldLayoutBars;
@property (nonatomic) NSNumber *testingRightToLeftOverride;