mirror of
https://github.com/1C-Company/v8-code-style.git
synced 2025-01-08 09:14:55 +02:00
376 B
376 B
Check DataExchange.Load in event handler
Mandatory checking of DataExchange.Load is absent in event handler
Noncompliant Code Example
Procedure BeforeWrite(Cancel)
// handler code
// ...
EndProcedure
Compliant Solution
Procedure BeforeWrite(Cancel)
If DataExchange.Load Then
Return;
EndIf;
// handler code
// ...
EndProcedure