Skip to content

Commit d181f28

Browse files
committed
Fix inheritance gutter blacklist not being inverted
1 parent 6d73273 commit d181f28

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

recaf-ui/src/main/java/software/coley/recaf/ui/control/richtext/source/JavaContextActionSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ private void populateInheritanceTracking() {
518518
}
519519
});
520520
parents.forEach((parent, parentClassPath) -> {
521-
if (parent.hasMethod(methodName, methodDesc) && isBlacklistedParent(parent, methodName, methodDesc)) {
521+
if (parent.hasMethod(methodName, methodDesc) && !isBlacklistedParent(parent, methodName, methodDesc)) {
522522
ClassMemberPathNode parentMethodPath = parentClassPath.child(methodName, methodDesc);
523523
if (parentMethodPath != null)
524524
inheritances.add(new Inheritance.Parent(line, parentMethodPath));

0 commit comments

Comments
 (0)