Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8d794f0

Browse files
committed
Update block
1 parent 393cfec commit 8d794f0

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

source/core/annotations/ut_annotation_parser.pkb

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)