GP-6100 - PDB - fixed NPE due to function null container class

This commit is contained in:
ghizard
2025-11-10 07:34:49 -05:00
parent 996f6d5e8a
commit 5617485789

View File

@@ -2228,6 +2228,9 @@ public class DefaultPdbApplicator implements PdbApplicator {
//==============================================================================================
void predefineClass(SymbolPath classPath) {
if (classPath == null) {
return;
}
isClassByNamespace.put(classPath, true);
for (SymbolPath path = classPath.getParent(); path != null; path = path.getParent()) {
if (!isClassByNamespace.containsKey(path)) {