Skip to content
Snippets Groups Projects
Commit 2427f5a1 authored by Michael Haupt's avatar Michael Haupt
Browse files

fix bug in group dispatch logic

parent 160a4c53
Branches
No related tags found
No related merge requests found
......@@ -89,7 +89,7 @@ public class OpsGroupDispatchNode extends GroupDispatchNode {
continue;
}
for (int j = 0; j < classHr.getLength(); ++j) {
if (classHr.equals(klass.getDataAt(0))) {
if (classHr.getDataAt(j).equals(klass.getDataAt(0))) {
methods[i] = targetFunctionName;
break;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment