Skip to content

Commit

Permalink
use curly braces for one line blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Bamberger committed Oct 15, 2013
1 parent 7ecd858 commit b1a6186
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/git-review/commands.rb
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,7 @@ def print_requests(requests, reverse=false)
requests.each { |req| output[req.number] = request_summary(req) }
numbers = output.keys.sort
numbers.reverse! if reverse
numbers.each do |n|
puts output[n]
end
numbers.each { |n| puts output[n] }
end

def print_request_details(request)
Expand Down

0 comments on commit b1a6186

Please sign in to comment.