diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-08-30 06:22:30 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-08-30 06:22:30 +0000 |
commit | 4b298ad77a8388f0aae62daeca66659a8effeade (patch) | |
tree | 163674f4123bf461a86b4f6fd1de964297057bae /lib/shell/system-command.rb | |
parent | 0df79477bd2cd534ad2d89bfdbf9708c64b59eed (diff) |
Use qualified names
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56037 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/shell/system-command.rb')
-rw-r--r-- | lib/shell/system-command.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/shell/system-command.rb b/lib/shell/system-command.rb index 2a8ffd6ed9..81456e7db3 100644 --- a/lib/shell/system-command.rb +++ b/lib/shell/system-command.rb @@ -22,7 +22,7 @@ class Shell @command = command @opts = opts - @input_queue = Queue.new + @input_queue = Thread::Queue.new @pid = nil sh.process_controller.add_schedule(self) |