File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -143,20 +143,16 @@ create or replace package body ut_annotation_parser as
143143 l_i := 1;
144144 while l_i <= a_source.count loop
145145 l_line := a_source(l_i);
146-
147- -- -----------------------------------------------------------------
148146 -- Comment placeholder line: start/continue accumulating a block
149- -- -----------------------------------------------------------------
150- if instr(l_line, '{COMMENT#') > 0 then
147+ if instr(l_line, chr(123) ||'COMMENT#') > 0 then
151148 if l_in_comment_block then
152149 l_proc_comments := l_proc_comments || l_line || chr(10);
153150 else
154151 l_in_comment_block := true;
155- l_proc_comments := l_line || chr(10);
152+ l_proc_comments := l_line || chr(10);
156153 end if;
157154 l_i := l_i + 1;
158155
159- -- -----------------------------------------------------------------
160156 -- Whitespace-only line: allowed between comment block and proc decl
161157 -- -----------------------------------------------------------------
162158 elsif l_in_comment_block and trim(replace(l_line, chr(9))) is null then
You can’t perform that action at this time.
0 commit comments