summaryrefslogtreecommitdiff
path: root/sample/drb/darrayc.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/drb/darrayc.rb')
-rw-r--r--sample/drb/darrayc.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/sample/drb/darrayc.rb b/sample/drb/darrayc.rb
index 6f5ff6bb5d..b181d22699 100644
--- a/sample/drb/darrayc.rb
+++ b/sample/drb/darrayc.rb
@@ -45,15 +45,3 @@ ro.each do |x|
puts count
redo if count == 3
end
-
-puts "# each, retry"
-retried = false
-ro.each do |x|
- puts x
- if x == 4 && !retried
- puts 'retry'
- retried = true
- retry
- end
-end
-