What about anonymous procedures? # Initial ``` TThread.Synchronize(nil, procedure begin ATable.DisableControls; end ); ``` # Result This code will be formated to a one liner ` TThread.Synchronize(nil, procedure begin ATable.DisableControls; end);`
What about anonymous procedures?
Initial
Result
This code will be formated to a one liner
TThread.Synchronize(nil, procedure begin ATable.DisableControls; end);