If I have a multi-line comment inside of a loop block, the 2nd line of the comment keeps indenting everytime I click the beautifier. I also noticed that this only happens if there is a blank line above the comments.
Thanks,
Joe
P.S. Can't wait to see Version 7.
Code:
begin
for c in (select *
from dual)
loop
null;
<-- It works OK w/o this blank line.
/*
Line 1 Comment
Line 2 Comment
*/
end loop;
end;
Joe
P.S. Can't wait to see Version 7.