Skip to content

Commit 51ae5b4

Browse files
committed
Lint
1 parent fcc06ee commit 51ae5b4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.abapgit.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<REQUIREMENTS>
1010
<item>
1111
<COMPONENT>SAP_BASIS</COMPONENT>
12-
<MIN_RELEASE>740</MIN_RELEASE>
12+
<MIN_RELEASE>750</MIN_RELEASE>
1313
</item>
1414
</REQUIREMENTS>
1515
<VERSION_CONSTANT>ZIF_TYPES=&gt;C_VERSION</VERSION_CONSTANT>

src/zif_types.intf.abap

+4-4
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ INTERFACE zif_types PUBLIC.
128128
TYPES:
129129
"! Abbreviated manifest
130130
"! (fetched with "accept: application/vnd.npm.install-v1+json" in the HTTP headers)
131-
BEGIN OF ty_manifest_abbreviated,
131+
BEGIN OF ty_manifest_abbreviated ##NEEDED,
132132
name TYPE string,
133133
version TYPE string,
134134
dependencies TYPE ty_dependencies,
@@ -142,7 +142,7 @@ INTERFACE zif_types PUBLIC.
142142
db TYPE string_table,
143143
dist TYPE ty_dist,
144144
deprecated TYPE abap_bool,
145-
END OF ty_manifest_abbreviated ##NEEDED.
145+
END OF ty_manifest_abbreviated.
146146

147147
" *** PACKUMENT ***
148148

@@ -167,7 +167,7 @@ INTERFACE zif_types PUBLIC.
167167
TYPES:
168168
"! Full packument (as fetched from registry)
169169
"! Some fields are hoisted from latest version to root
170-
BEGIN OF ty_packument,
170+
BEGIN OF ty_packument ##NEEDED,
171171
name TYPE string,
172172
description TYPE string,
173173
dist_tags TYPE STANDARD TABLE OF ty_generic WITH KEY key,
@@ -193,7 +193,7 @@ INTERFACE zif_types PUBLIC.
193193
__rev TYPE string,
194194
__attachments TYPE STANDARD TABLE OF ty_attachment WITH KEY key,
195195
access TYPE string,
196-
END OF ty_packument ##NEEDED.
196+
END OF ty_packument.
197197

198198

199199
CONSTANTS:

0 commit comments

Comments
 (0)