Ruby

Ruby

Made by DeepSource

when branch without a body detected RB-LI1019

Bug risk
Major

Bad practice

case foo
when bar then 1
when baz then # nothing
end

Recommended

case foo
when bar then 1
when baz then 2
end