mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
vcs.rb: suppress warnings
* tool/vcs.rb (VCS#modified): get rid of set but unused variables. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55827 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
489456e999
commit
df0e70b90a
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ class VCS
|
|||
end
|
||||
|
||||
def modified(path)
|
||||
last, changed, modified, *rest = get_revisions(path)
|
||||
_, _, modified, * = get_revisions(path)
|
||||
modified
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue