Skip to content

Commit e1dc2dd

Browse files
committed
GP-3844: Fixing bug in ClassSearcher regex
1 parent 4b465a9 commit e1dc2dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Ghidra/Framework/Generic/src/main/java/ghidra/util/classfinder/ClassSearcher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ private static void loadExtensionPointSuffixes() {
409409
buffy.append(suffix);
410410
between = "|";
411411
}
412-
buffy.append(')');
412+
buffy.append(")$");
413413
extensionPointSuffixPattern = Pattern.compile(buffy.toString());
414414
log.trace("Using extension point pattern: {}", extensionPointSuffixPattern);
415415
}

0 commit comments

Comments
 (0)