Skip to content

Commit

Permalink
Make methods look for the same method that has the same signature rat…
Browse files Browse the repository at this point in the history
…her than owner.
  • Loading branch information
Bl3nd committed Oct 3, 2024
1 parent a9cbd66 commit 82789aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public void actionPerformed(ActionEvent e)
}
else
{
methods.stream().filter(classMethodLocation -> classMethodLocation.owner.equals(method.owner)).forEach(classMethodLocation ->
methods.stream().filter(classMethodLocation -> classMethodLocation.signature.equals(method.signature)).forEach(classMethodLocation ->
{
if (classMethodLocation.decRef.equalsIgnoreCase("declaration"))
{
Expand Down

0 comments on commit 82789aa

Please sign in to comment.