You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some reason ABAP Cleaner concludes that PARENT is not used in this code and adds a comment about unused variable as shown in the redacted excerpt.
result = 99. "bottles of beer on the wall
TRY.
" TODO: variable is assigned but never used (ABAP cleaner)
DATA(parent) = zif_team~get_parent_team( ).
result = 10. "bottles of weissbier in the fridge ;-)
DO.
parent = parent->get_parent_team( ).
result -= 1.
IF result <= 1.
EXIT.
ENDIF.
ENDDO.
CATCH zcx_no_parent_team.
ENDTRY.
ABAP Cleaner version 1.21.1
ABAP Development Tools Foundation version 3.46.2
Eclipse IDE version 4.34.0 (build ID 20241128-0757)
ABAP Platform 2023/02
The text was updated successfully, but these errors were encountered:
For some reason ABAP Cleaner concludes that PARENT is not used in this code and adds a comment about unused variable as shown in the redacted excerpt.
ABAP Cleaner version 1.21.1
ABAP Development Tools Foundation version 3.46.2
Eclipse IDE version 4.34.0 (build ID 20241128-0757)
ABAP Platform 2023/02
The text was updated successfully, but these errors were encountered: