Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/foundation/y_check_base.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ CLASS Y_CHECK_BASE IMPLEMENTATION.
DATA(profiles) = y_profile_manager=>create( )->select_profiles( sy-uname ).
result = xsdbool( profiles IS NOT INITIAL ).
CATCH ycx_entry_not_found.
result = abap_true.
result = abap_false.
ENDTRY.
ENDMETHOD.

Expand Down
1 change: 0 additions & 1 deletion src/profiles/y_profile_manager.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,6 @@ CLASS y_profile_manager IMPLEMENTATION.
LOOP AT result ASSIGNING FIELD-SYMBOL(<line>) WHERE username <> username AND is_standard = abap_true.
<line>-username = username.
ENDLOOP.
UNASSIGN <line>.
ENDMETHOD.


Expand Down