mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-12 05:14:10 +02:00
compileInstance null check
This commit is contained in:
parent
1e560ae8fb
commit
0033a420a8
1 changed files with 1 additions and 1 deletions
|
@ -1419,7 +1419,7 @@ namespace IDE
|
||||||
{
|
{
|
||||||
if (compileInstance.mProjectItemCompileInstances.GetAndRemove(projectSource) case .Ok((?, let compileInstance)))
|
if (compileInstance.mProjectItemCompileInstances.GetAndRemove(projectSource) case .Ok((?, let compileInstance)))
|
||||||
{
|
{
|
||||||
compileInstance.Deref();
|
compileInstance?.Deref();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue