Created
May 25, 2010 05:53
-
-
Save lightningdb/412829 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# instead of: | |
if retail_chains && retail_chains.size > 0 | |
return retail_chains[0] | |
end | |
# you could write: | |
retail_chains.first unless retail_chains.blank? | |
# (or another way) | |
retail_chains.first if retail_chains.present? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment