1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

compileInstance null check

This commit is contained in:
Brian Fiete 2023-02-23 05:59:18 -05:00
parent 1e560ae8fb
commit 0033a420a8

View file

@ -1419,7 +1419,7 @@ namespace IDE
{
if (compileInstance.mProjectItemCompileInstances.GetAndRemove(projectSource) case .Ok((?, let compileInstance)))
{
compileInstance.Deref();
compileInstance?.Deref();
}
}
}