[OLINGO-989] Additional charset handling 2

Signed-off-by: Christian Amend <christian.amend@sap.com>
This commit is contained in:
Kanika Jashrapuria 2016-04-28 20:36:46 +05:30 committed by Christian Amend
parent f46c680c9b
commit 122a31ff63
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ public abstract class AbstractODataBatchRequestItem extends AbstractODataStreame
newLine(); newLine();
stream(ODataBatchConstants.ITEM_TRANSFER_ENCODING_LINE.getBytes(DEFAULT_CHARSET)); stream(ODataBatchConstants.ITEM_TRANSFER_ENCODING_LINE.getBytes(DEFAULT_CHARSET));
newLine(); newLine();
stream((ODataBatchConstants.CHANGESET_CONTENT_ID_NAME + ":" + contentId).getBytes()); stream((ODataBatchConstants.CHANGESET_CONTENT_ID_NAME + ":" + contentId).getBytes(DEFAULT_CHARSET));
newLine(); newLine();
newLine(); newLine();
} }