Fix code error in clearValues()

This commit is contained in:
Dev 2023-12-19 17:21:22 +00:00
parent 8a964aef29
commit c2cd9ff895

View File

@ -64,7 +64,7 @@ export class ApplicationContext
public clearValues(type: ContextVariableType): void
{
this.variables.has(type)
if (this.variables.has(type))
{
this.variables.delete(type);
}