From 04774e5bf26b10150504635e68202a3965e2253b Mon Sep 17 00:00:00 2001 From: Tomoyuki Sahara Date: Thu, 15 Jun 2017 11:00:26 +0900 Subject: remove unused exception variables. --- mrblib/io.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mrblib/io.rb b/mrblib/io.rb index f538af490..02c8141c5 100644 --- a/mrblib/io.rb +++ b/mrblib/io.rb @@ -200,7 +200,7 @@ class IO while 1 begin _read_buf - rescue EOFError => e + rescue EOFError array = nil if array.empty? and (not length.nil?) and length != 0 break end @@ -248,7 +248,7 @@ class IO while 1 begin _read_buf - rescue EOFError => e + rescue EOFError array = nil if array.empty? break end @@ -276,7 +276,7 @@ class IO def gets(*args) begin readline(*args) - rescue EOFError => e + rescue EOFError nil end end @@ -291,7 +291,7 @@ class IO def getc begin readchar - rescue EOFError => e + rescue EOFError nil end end -- cgit v1.2.3