Fix syntax check warnings (#5055)

* Fix syntax check warnings

* The classes can be final
This commit is contained in:
Frederik Hudák 2021-10-25 15:33:13 +02:00 committed by GitHub
parent 1e5befc44a
commit ea0c834992
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 7 deletions

View File

@ -1,6 +1,6 @@
CLASS zcl_abapgit_path DEFINITION
PUBLIC
CREATE PUBLIC .
PUBLIC FINAL
CREATE PUBLIC.
PUBLIC SECTION.

View File

@ -1,6 +1,6 @@
CLASS zcl_abapgit_zlib_convert DEFINITION
PUBLIC
CREATE PUBLIC .
PUBLIC FINAL
CREATE PUBLIC.
PUBLIC SECTION.
@ -8,17 +8,20 @@ CLASS zcl_abapgit_zlib_convert DEFINITION
IMPORTING
!iv_hex TYPE xsequence
RETURNING
VALUE(rv_bits) TYPE string .
VALUE(rv_bits) TYPE string.
CLASS-METHODS bits_to_int
IMPORTING
!iv_bits TYPE clike
RETURNING
VALUE(rv_int) TYPE i .
VALUE(rv_int) TYPE i.
CLASS-METHODS int_to_hex
IMPORTING
!iv_int TYPE i
RETURNING
VALUE(rv_hex) TYPE xstring .
VALUE(rv_hex) TYPE xstring.
ENDCLASS.