From 64923ecb2d114b6ac1728c5a1b23de509e8bf654 Mon Sep 17 00:00:00 2001 From: sho-h Date: Tue, 19 Jan 2016 02:03:50 +0000 Subject: * lib/shell.rb (Shell.debug_output_exclusive_unlock): remove because Mutex#exclusive_unlock was already deleted. [fix GH-1185] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53583 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ lib/shell.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 35869687f7..87a86e0cbc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Jan 19 10:09:58 2016 Sho Hashimoto + + * lib/shell.rb (Shell.debug_output_exclusive_unlock): remove + because Mutex#exclusive_unlock was already deleted. [fix GH-1185] + Tue Jan 19 09:38:27 2016 Nick Cox * vm_method.c: fix grammar in respond_to? warning. diff --git a/lib/shell.rb b/lib/shell.rb index bf389795b7..8216eb2862 100644 --- a/lib/shell.rb +++ b/lib/shell.rb @@ -168,7 +168,7 @@ class Shell end # os resource mutex - mutex_methods = ["unlock", "lock", "locked?", "synchronize", "try_lock", "exclusive_unlock"] + mutex_methods = ["unlock", "lock", "locked?", "synchronize", "try_lock"] for m in mutex_methods def_delegator("@debug_output_mutex", m, "debug_output_"+m.to_s) end -- cgit v1.2.3