Skip to content

Commit c12d558

Browse files
Fix lint problems (#600)
* Add missing space between literal and parenthesis * Remove unused variable
1 parent b45a99b commit c12d558

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/checks/y_check_unit_test_assert.clas.abap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ CLASS y_check_unit_test_assert IMPLEMENTATION.
157157
TRY.
158158
DATA(previous_token) = ref_scan->tokens[ position - 1 ].
159159
DATA(next_token) = ref_scan->tokens[ position + 1 ].
160-
result = xsdbool( previous_token-str CP '*[' AND next_token-str CP ']*').
160+
result = xsdbool( previous_token-str CP '*[' AND next_token-str CP ']*' ).
161161
CATCH cx_sy_itab_line_not_found.
162162
result = abap_false.
163163
RETURN.

src/profiles/y_profile_admin_classes.prog.abap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1418,7 +1418,7 @@ CLASS lcl_util IMPLEMENTATION.
14181418
ENDTRY.
14191419

14201420
TRY.
1421-
DATA(checks) = profile_manager->select_checks( profile ).
1421+
profile_manager->select_checks( profile ).
14221422
CATCH ycx_entry_not_found.
14231423
RETURN.
14241424
ENDTRY.

0 commit comments

Comments
 (0)