removed pipe sync

This commit is contained in:
Nick Gauthier 2010-01-27 10:33:58 -05:00
parent d51ef809cf
commit a3057b88b5
1 changed files with 0 additions and 1 deletions

View File

@ -28,7 +28,6 @@ module Hydra #:nodoc:
def initialize
@child_read, @parent_write = IO.pipe
@parent_read, @child_write = IO.pipe
[@parent_write, @child_write].each{|io| io.sync = true}
end
# Read a line from a pipe. It will have a trailing newline.