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

Skip to content

Commit c61abfa

Browse files
committed
Get rid of several in out nocopy params where in would be sufficient
1 parent 89df1dd commit c61abfa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/core/ut_suite_builder.pkb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ create or replace package body ut_suite_builder is
707707
function get_next_annotation_of_type(
708708
a_start_position t_annotation_position,
709709
a_annotation_type varchar2,
710-
a_package_annotations in out nocopy tt_annotations_by_name
710+
a_package_annotations in tt_annotations_by_name
711711
) return t_annotation_position is
712712
l_result t_annotation_position;
713713
begin
@@ -745,7 +745,7 @@ create or replace package body ut_suite_builder is
745745

746746
function has_nested_context(
747747
a_context_ann_pos t_annotation_position,
748-
a_package_annotations in out nocopy tt_annotations_by_name
748+
a_package_annotations in tt_annotations_by_name
749749
) return boolean is
750750
l_next_endcontext_pos t_annotation_position := 0;
751751
l_next_context_pos t_annotation_position := 0;

0 commit comments

Comments
 (0)