-
Notifications
You must be signed in to change notification settings - Fork 424
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove unused property #3809
Remove unused property #3809
Conversation
Clang Static Analysis Issues
Generated by 🚫 Danger |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev #3809 +/- ##
==========================================
- Coverage 62.75% 61.27% -1.49%
==========================================
Files 224 233 +9
Lines 21361 21879 +518
==========================================
+ Hits 13405 13406 +1
- Misses 7956 8473 +517
|
@@ -225,9 +225,6 @@ NS_SWIFT_NAME(SalesforceManager) | |||
*/ | |||
@property (nonatomic, assign) BOOL isLoginWebviewInspectable; | |||
|
|||
/*** Indicates if login via QR Code and UI bridge API is enabled */ | |||
@property (nonatomic, assign) BOOL isQrCodeLoginEnabled; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The template sets it (see https://github.com/search?q=repo%3Aforcedotcom%2FSalesforceMobileSDK-Templates%20isQrCodeLoginEnabled&type=code).
@JohnsonEricAtSalesforce what was the idea for that property ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 I have a commit for the template I'll put up too if we merge this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@wmathurin - On Android, this property was actually used but in the iOS implementation it wound up not being practical. It can be safely removed.
No description provided.