about summary refs log tree commit homepage
path: root/lib/dtas/spawn_fix.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dtas/spawn_fix.rb')
-rw-r--r--lib/dtas/spawn_fix.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/dtas/spawn_fix.rb b/lib/dtas/spawn_fix.rb
deleted file mode 100644
index a510a9e..0000000
--- a/lib/dtas/spawn_fix.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-# Copyright (C) 2013-2016 all contributors <dtas-all@nongnu.org>
-# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
-# workaround for older Rubies: https://bugs.ruby-lang.org/issues/8770
-module DTAS::SpawnFix # :nodoc:
-  def spawn(*args)
-    super(*args)
-  rescue Errno::EINTR
-    retry
-  end if RUBY_VERSION.to_f <= 2.1
-end