Hi,
for this code:
DATA(lv_json) = `{"a":"b", ` && `"c":{}}`.
abap-cleaner proposes without any need string templates:
DATA(lv_json) = |\{"a":"b", "c":\{\}\}|.
On one side, the unnecessary string templates causes runtime costs and on the other
side the JSON syntax becomes quite hard to read because of the escaping of the bracelets.
Kind regards
André
Hi,
for this code:
abap-cleaner proposes without any need string templates:
On one side, the unnecessary string templates causes runtime costs and on the other
side the JSON syntax becomes quite hard to read because of the escaping of the bracelets.
Kind regards
André