Make methods look for the same method that has the same signature rather than owner.

This commit is contained in:
Cody 2024-10-02 21:18:37 -06:00
parent a9cbd661ca
commit 82789aa38e

AI 샘플 코드 생성 중입니다

Loading...

View File

@ -127,7 +127,7 @@ public class GoToAction extends AbstractAction
}
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"))
{