You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Xcode 12.0 beta the switch_case_on_newline is triggered on a catch in the examples provided below:
do{letloadedToken=try tokenManager.decodeToken(from: response)return loadedToken
}catch{throw error }// switch_case_on_newline violation here at `catch`
do{letcomponents=tryJWTComponents(token: token, authorizationKey: authorizationKey)XCTAssertEqual(components.payload.userId,"1234567890")}catch{XCTFail(error.localizedDescription)}// switch_case_on_newline violation here at `catch`
New Issue Checklist
Describe the bug
On Xcode 12.0 beta the
switch_case_on_newline
is triggered on acatch
in the examples provided below:Environment
The text was updated successfully, but these errors were encountered: