Remove two more unnecessary default arguments

This commit is contained in:
Jack Nagel 2014-08-14 19:58:17 -05:00
parent 1dc384b4c4
commit 181654ddaf
2 changed files with 2 additions and 2 deletions

View File

@ -133,7 +133,7 @@ class Keg
dylibs.each(&block)
end
def dylib_id_for file, options={}
def dylib_id_for(file, options)
# The new dylib ID should have the same basename as the old dylib ID, not
# the basename of the file itself.
basename = File.basename(file.dylib_id)

View File

@ -126,7 +126,7 @@ class Requirement
end
class Satisfier
def initialize(options={}, &block)
def initialize(options, &block)
case options
when Hash
@options = { :build_env => true }