Beautifier add extra space on each format

pzurflueh

Member
Hello,

Issue was found on version 12.0.5 on code beautify with the following statement:

Space is added on the first comment at each attempt.

SQL:
DECLARE

BEGIN
  CASE 1
    WHEN 1 THEN
      lib_debug#.put_line('1');

      /*
      TEST
      TEST
      */

    ELSE
      lib_debug#.put_line('Other');
  END CASE;

  /*
  TEST
  TEST
  */
END;

Patrick
 
Back
Top