Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

set_cdata alias #918

Merged
merged 1 commit into from
Jan 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/http/cl_http_entity.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ CLASS cl_http_entity DEFINITION PUBLIC CREATE PRIVATE.
ALIASES set_header_field FOR if_http_entity~set_header_field.
ALIASES append_cdata FOR if_http_entity~append_cdata.
ALIASES get_cdata FOR if_http_entity~get_cdata.
ALIASES set_cdata FOR if_http_entity~set_cdata.
PROTECTED SECTION.
DATA m_last_error TYPE i.
PRIVATE SECTION.
Expand Down Expand Up @@ -313,4 +314,4 @@ CLASS cl_http_entity IMPLEMENTATION.
APPEND ls_field TO mt_form_fields.
ENDMETHOD.

ENDCLASS.
ENDCLASS.
Loading