mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +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
|
// 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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue