Skip to content

Commit 50920d4

Browse files
committed
merging ifs
1 parent eb3baac commit 50920d4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/foundation/y_check_base.clas.abap

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -226,11 +226,10 @@ CLASS y_check_base IMPLEMENTATION.
226226

227227
METHOD execute_check.
228228
LOOP AT ref_scan_manager->structures ASSIGNING FIELD-SYMBOL(<structure>).
229-
IF are_relevant_types_set( ) = abap_true.
230-
IF is_statement_type_relevant( <structure> ) = abap_false
231-
AND is_structure_type_relevant( <structure> ) = abap_false.
229+
IF are_relevant_types_set( ) = abap_true
230+
AND is_statement_type_relevant( <structure> ) = abap_false
231+
AND is_structure_type_relevant( <structure> ) = abap_false.
232232
CONTINUE.
233-
ENDIF.
234233
ENDIF.
235234

236235
IF should_skip_test_code( <structure> ) = abap_true.

0 commit comments

Comments
 (0)