Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
larshp committed Aug 18, 2023
1 parent f9185b0 commit 1c9139e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion abaplint.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}
],
"syntax": {
"version": "v740sp02",
"version": "v750",
"errorNamespace": "."
},
"rules": {
Expand Down
2 changes: 1 addition & 1 deletion abaplint_downport.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}
],
"syntax": {
"version": "v702",
"version": "open-abap",
"errorNamespace": ""
},
"rules": {
Expand Down
6 changes: 3 additions & 3 deletions src/generator/zcl_protobuf_generator.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ENDCLASS.



CLASS ZCL_PROTOBUF_GENERATOR IMPLEMENTATION.
CLASS zcl_protobuf_generator IMPLEMENTATION.


METHOD generate.
Expand All @@ -20,9 +20,9 @@ CLASS ZCL_PROTOBUF_GENERATOR IMPLEMENTATION.
rv_abap = 'sdfs'.
CASE TYPE OF lo_artefact.
WHEN TYPE zcl_protobuf2_message.
BREAK-POINT.
WRITE / 'todo'.
WHEN OTHERS.
BREAK-POINT.
WRITE / 'todo'.
ENDCASE.
ENDLOOP.

Expand Down
2 changes: 1 addition & 1 deletion src/parser/zcl_protobuf2_parser.clas.locals_imp.abap
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ CLASS lcl_stream IMPLEMENTATION.
ENDMETHOD.

METHOD is_empty.
rv_empty = boolc( strlen( condense( mv_str ) ) = 0 ).
rv_empty = xsdbool( strlen( condense( mv_str ) ) = 0 ).
ENDMETHOD.

METHOD take_token.
Expand Down

0 comments on commit 1c9139e

Please sign in to comment.