+++ title = "Unnecessary Separators" weight = 1290 +++ There should be no unnecessary separators. Bad code ```al IF Customer.FINDFIRST THEN;; ``` Good code ```al IF Customer.FINDFIRST THEN; ```