Skip to content

Commit

Permalink
linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sbcgua committed Mar 2, 2024
1 parent e839c2a commit 1ca9e4d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/zcl_ajson.clas.locals_imp.abap
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,8 @@ class lcl_json_to_abap implementation.
<container> = to_date( is_node-value ).
elseif is_node_type-type_kind = lif_kind=>time.
<container> = to_time( is_node-value ).
elseif is_node_type-dd->absolute_name = '\TYPE=TIMESTAMP' or is_node_type-dd->absolute_name = '\TYPE=TIMESTAMPL'.
elseif is_node_type-dd->absolute_name = '\TYPE=TIMESTAMP'
or is_node_type-dd->absolute_name = '\TYPE=TIMESTAMPL'.
<container> = to_timestamp( is_node-value ).
elseif is_node_type-type_kind = lif_kind=>packed. " Number as a string, but not a timestamp
<container> = is_node-value.
Expand Down

0 comments on commit 1ca9e4d

Please sign in to comment.