Skip to content

Commit 8edbdf8

Browse files
committed
lint
1 parent 339c11f commit 8edbdf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ios/Classes/StyleController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ class StyleController: NSObject, FLTStyleManager {
129129
do {
130130
var mappedValue = value
131131
if let stringValue = value as? String {
132-
if (stringValue.hasPrefix("[") || stringValue.hasPrefix("{")) {
132+
if stringValue.hasPrefix("[") || stringValue.hasPrefix("{") {
133133
if let expressionData = stringValue.data(using: .utf8) {
134134
let expJSONObject = try JSONSerialization.jsonObject(with: expressionData, options: [])
135135
mappedValue = expJSONObject

0 commit comments

Comments
 (0)