Refactoring: get rid of ruby antipattern unless/else and use if/else instead

This commit is contained in:
Andrey Vakarev 2012-05-20 03:01:13 +03:00
parent f33cf247b6
commit fed1c98047
1 changed files with 3 additions and 3 deletions

View File

@ -97,12 +97,12 @@ class ApplicationController < ActionController::Base
end
def load_refs
unless params[:ref].blank?
@ref = params[:ref]
else
if params[:ref].blank?
@branch = params[:branch].blank? ? nil : params[:branch]
@tag = params[:tag].blank? ? nil : params[:tag]
@ref = @branch || @tag || @project.try(:default_branch) || Repository.default_ref
else
@ref = params[:ref]
end
end