Skip to content

Commit 2321f78

Browse files
committed
Lint
1 parent 8621b30 commit 2321f78

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

src/zcl_strust2.clas.abap

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ CLASS zcl_strust2 DEFINITION
1111
************************************************************************
1212
PUBLIC SECTION.
1313

14+
CONSTANTS c_version TYPE string VALUE '1.1.0' ##NEEDED.
15+
1416
TYPES:
15-
ty_line TYPE c LENGTH 80.
16-
TYPES:
17-
ty_certificate TYPE STANDARD TABLE OF ty_line WITH DEFAULT KEY.
18-
TYPES:
17+
ty_line TYPE c LENGTH 80,
18+
ty_certificate TYPE STANDARD TABLE OF ty_line WITH DEFAULT KEY,
1919
BEGIN OF ty_certattr,
2020
subject TYPE string,
2121
issuer TYPE string,
@@ -25,12 +25,9 @@ CLASS zcl_strust2 DEFINITION
2525
datefrom TYPE d,
2626
dateto TYPE d,
2727
certificate TYPE xstring,
28-
END OF ty_certattr.
29-
TYPES:
28+
END OF ty_certattr,
3029
ty_certattr_tt TYPE STANDARD TABLE OF ty_certattr WITH DEFAULT KEY.
3130

32-
CONSTANTS c_version TYPE string VALUE '1.1.0' ##NEEDED.
33-
3431
METHODS constructor
3532
IMPORTING
3633
!iv_context TYPE psecontext

0 commit comments

Comments
 (0)