Removed unused variable

This commit is contained in:
Nobuyoshi Nakada 2019-06-28 12:36:03 +09:00
parent 7eaedda557
commit 4562dad94c
No known key found for this signature in database
GPG Key ID: 4BC7D6DF58D8DF60

View File

@ -347,7 +347,7 @@ print <<EOS
# #
# returns updated keys list, or +nil+ if nothing changed. # returns updated keys list, or +nil+ if nothing changed.
def RbConfig.fire_update!(key, val, mkconf = MAKEFILE_CONFIG, conf = CONFIG) def RbConfig.fire_update!(key, val, mkconf = MAKEFILE_CONFIG, conf = CONFIG)
return if (old = mkconf[key]) == val return if mkconf[key] == val
mkconf[key] = val mkconf[key] = val
keys = [key] keys = [key]
deps = [] deps = []