From df0e70b90a3198295b5640b36c57ef1266a7a258 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 7 Aug 2016 10:34:10 +0000 Subject: 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 --- tool/vcs.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/vcs.rb b/tool/vcs.rb index 9d0a276937..93d642efec 100644 --- a/tool/vcs.rb +++ b/tool/vcs.rb @@ -138,7 +138,7 @@ class VCS end def modified(path) - last, changed, modified, *rest = get_revisions(path) + _, _, modified, * = get_revisions(path) modified end -- cgit v1.2.3