Skip to content

Commit db3d0da

Browse files
committed
Fixed several warning reported by RubyMine
1 parent 435c08e commit db3d0da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/ruby-debug-ide/commands/variables.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ def execute
8080
obj = debug_eval(@match.post_match)
8181
end
8282
return unless obj
83-
if (obj.is_a?(Array)) then
83+
if obj.is_a?(Array)
8484
print_array(obj)
85-
elsif (obj.is_a?(Hash)) then
85+
elsif obj.is_a?(Hash)
8686
print_hash(obj)
87-
elsif (obj.is_a?(String))
87+
elsif obj.is_a?(String)
8888
print_string(obj)
8989
else
9090
print_element("variables") do

0 commit comments

Comments
 (0)