Skip to content

Commit 13a0d81

Browse files
authored
Remove unnecessary line breaks in ABAP code examples
1 parent 4ac9da9 commit 13a0d81

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

docs/get_started/quickstart.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,34 +22,26 @@ Create a new package and define a new HTTP handler class:
2222

2323
```abap [ABAP]
2424
CLASS zcl_my_abap2UI5_http_handler DEFINITION PUBLIC.
25-
2625
PUBLIC SECTION.
2726
INTERFACES if_http_extension.
28-
2927
ENDCLASS.
3028
3129
CLASS zcl_my_abap2UI5_http_handler IMPLEMENTATION.
3230
METHOD if_http_extension~handle_request.
33-
3431
z2ui5_cl_http_handler=>run( server ).
35-
3632
ENDMETHOD.
3733
ENDCLASS.
3834
```
3935

4036
```abap [ABAP Cloud]
4137
CLASS zcl_my_abap2UI5_http_handler DEFINITION PUBLIC.
42-
4338
PUBLIC SECTION.
4439
INTERFACES if_http_service_extension.
45-
4640
ENDCLASS.
4741
4842
CLASS zcl_my_abap2UI5_http_handler IMPLEMENTATION.
4943
METHOD if_http_service_extension~handle_request.
50-
5144
z2ui5_cl_http_handler=>run( req = request res = response ).
52-
5345
ENDMETHOD.
5446
ENDCLASS.
5547
```

0 commit comments

Comments
 (0)