Skip to content

Commit 3a34c2c

Browse files
committed
Removed useless variable assignment
1 parent 0ac9c64 commit 3a34c2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/rdoc/store.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ def load_class klass_name
596596
def load_class_data klass_name
597597
file = class_file klass_name
598598

599-
obj = open file, 'rb' do |io|
599+
open file, 'rb' do |io|
600600
Marshal.load io.read
601601
end
602602
rescue Errno::ENOENT => e

0 commit comments

Comments
 (0)