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

Skip to content

Commit 71666a6

Browse files
committed
Fixed annotation text parsing.
1 parent b8cd878 commit 71666a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/core/ut_annotations.pkb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ create or replace package body ut_annotations as
7878
,'%(' || c_rgexp_identifier || ')'
7979
,modifier => 'i'
8080
,subexpression => 1));
81-
l_annotation_params_str := trim(regexp_substr(l_annotation_str, '\((.*?)\)$', subexpression => 1));
81+
l_annotation_params_str := trim(regexp_substr(l_annotation_str, '\((.*?)\)\s*$', subexpression => 1));
8282

8383
if l_annotation_params_str is not null then
8484

0 commit comments

Comments
 (0)