What I want:
Transforming this:
if(a == b)
//statement
into:
if(a == b)
{ //statement }
Simply put: I want my single line if's to have their braces once again, and I need some program or plugin or some code, that would run over my code, and transform it to one with braces on every if.
How?
Thanks in advance, Danny.