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

Skip to content

Commit 35acf14

Browse files
committed
Not necessary to check for IS NOT NULL
1 parent c61abfa commit 35acf14

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/core/ut_suite_builder.pkb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@ create or replace package body ut_suite_builder is
907907

908908
l_context_pos := a_annotations.by_name( gc_context).next( l_context_pos);
909909
-- don't go on when the next context is outside the parent's context boundaries
910-
if ( a_parent_end_context_pos is not null and a_parent_end_context_pos <= l_context_pos ) then
910+
if (a_parent_end_context_pos <= l_context_pos ) then
911911
l_context_pos := null;
912912
end if;
913913
l_context_no := l_context_no + 1;

0 commit comments

Comments
 (0)