Skip to content
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

Tidying up hash key access of AF::Model #151

Merged
merged 1 commit into from
Jul 11, 2013
Merged

Conversation

jeremyf
Copy link
Contributor

@jeremyf jeremyf commented Jul 11, 2013

Instead of using:

attrs.has_key?(key) ? attrs[key] : DEFAULT

Use:

attrs.fetch(key, DEFAULT)

And removing the ever confounding unless/else/end is a good thing

Instead of using:
```
attrs.has_key?(key) ? attrs[key] : DEFAULT
```

Use:
```
attrs.fetch(key, DEFAULT)
```

And removing the ever confounding unless/else/end is a good thing
jcoyne added a commit that referenced this pull request Jul 11, 2013
@jcoyne jcoyne merged commit eeae533 into master Jul 11, 2013
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.

2 participants