Hi,
Some times we need to keep compound statement empty but it gives warning. To avoid same is any soultion available?
For ex. I have written one method with below code.
try
{
this.createReturnLine();
this.openForm();
}
catch (Exception::Error)
{
}
Now I am compiing same then it will give me and warning = “Empty compound statement.”
How to avoid the same?