about summary refs log tree commit homepage
path: root/lib/rainbows/fiber
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-02-06 01:42:31 +0000
committerEric Wong <normalperson@yhbt.net>2011-02-06 01:42:31 +0000
commit44eb53f5a5f1ea2e5aee93d0caf995f42b3179f7 (patch)
tree4bb6d0e028d1b63b515f2ded3451020d82d9a51e /lib/rainbows/fiber
parent90a86c9822238f01e8d60c9303b9a0da64351c7f (diff)
downloadrainbows-44eb53f5a5f1ea2e5aee93d0caf995f42b3179f7.tar.gz
kill some unnecessary &block usage
We were needlessly allocating objects even when using yield.
Diffstat (limited to 'lib/rainbows/fiber')
-rw-r--r--lib/rainbows/fiber/io.rb2
-rw-r--r--lib/rainbows/fiber/io/methods.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/rainbows/fiber/io.rb b/lib/rainbows/fiber/io.rb
index 49aef3d..4c7864d 100644
--- a/lib/rainbows/fiber/io.rb
+++ b/lib/rainbows/fiber/io.rb
@@ -28,7 +28,7 @@ class Rainbows::Fiber::IO
   end
 
   # for wrapping output response bodies
-  def each(&block)
+  def each
     buf = readpartial(16384)
     yield buf
     yield buf while readpartial(16384, buf)
diff --git a/lib/rainbows/fiber/io/methods.rb b/lib/rainbows/fiber/io/methods.rb
index 29c9854..29ee397 100644
--- a/lib/rainbows/fiber/io/methods.rb
+++ b/lib/rainbows/fiber/io/methods.rb
@@ -16,7 +16,7 @@ module Rainbows::Fiber::IO::Methods
   end
 
   # for wrapping output response bodies
-  def each(&block)
+  def each
     if buf = kgio_read(16384)
       yield buf
       yield buf while kgio_read(16384, buf)