1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

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.
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
keys = [key]
deps = []