Merge remote-tracking branch 'origin/GP-3718_Dan_fixWatchTypeNPE' into patch

This commit is contained in:
Ryan Kurtz 2023-08-09 13:13:01 -04:00
commit a5051f33dc

View File

@ -280,6 +280,9 @@ public class DebuggerWatchesProvider extends ComponentProviderAdapter
if (dataType == null) {
return null;
}
if (currentTrace == null) {
return dataType;
}
try (Transaction tx = currentTrace.openTransaction("Resolve DataType")) {
return currentTrace.getDataTypeManager().resolve(dataType, null);
}