mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
ClassSearcher no longer scan's 3rd party jar's for ExtenionPoints in
development mode when using the flatrepo/gradle cache setup.
This commit is contained in:
parent
777bcbef17
commit
add6576054
1 changed files with 2 additions and 1 deletions
|
@ -96,7 +96,8 @@ class ClassJar extends ClassLocation {
|
|||
//
|
||||
// Dev Mode - don't scan 3rd-party jar files
|
||||
//
|
||||
if (pathName.contains("ExternalLibraries")) {
|
||||
if (pathName.contains("ExternalLibraries") || pathName.contains("caches") ||
|
||||
pathName.contains("flatrepo")) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue