Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Conversation

guzhenhuaGitHub
Copy link
Contributor

@guzhenhuaGitHub guzhenhuaGitHub commented Aug 7, 2018

replace if-else with switch-case in ConstraintInsetTarget and constraintOffsetTargetValue
before:

if let amount = self as? Float {
...
} else if let amount = self as? Double {
...

change to:

switch self {
case let amount as Float:
...
case let amount as Double:
...
}

will that seems to be better?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

Morty Proxy This is a proxified and sanitized view of the page, visit original site.