Skip to content

Commit

Permalink
Fix "blanket breakpoint" on all overloads of a method
Browse files Browse the repository at this point in the history
  • Loading branch information
jbalint committed Aug 30, 2016
1 parent 3c02b86 commit 1a0ae99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion debuglib.lua
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ function bp(method, line_num)
elseif type(method) == "table" and method.classname == "jcallable_method" then
for i = 1, #method.possible_methods do
bp(method.possible_methods[i])
return
end
return
else
error("Invalid method, must be method declaration of form \"pkg/Class.name()V\" or a jmethod_id object")
end
Expand Down

0 comments on commit 1a0ae99

Please sign in to comment.