We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9cbd66 commit 82789aaCopy full SHA for 82789aa
1 file changed
src/main/java/the/bytecode/club/bytecodeviewer/gui/components/actions/GoToAction.java
@@ -127,7 +127,7 @@ public void actionPerformed(ActionEvent e)
127
}
128
else
129
{
130
- methods.stream().filter(classMethodLocation -> classMethodLocation.owner.equals(method.owner)).forEach(classMethodLocation ->
+ methods.stream().filter(classMethodLocation -> classMethodLocation.signature.equals(method.signature)).forEach(classMethodLocation ->
131
132
if (classMethodLocation.decRef.equalsIgnoreCase("declaration"))
133
0 commit comments