in src/main/java/com/amazonaws/sagemaker/helper/ResponseHelper.java [55:61]
public ResponseEntity<String> sendResponseForSingleValue(final String value, String acceptVal) {
if (StringUtils.isEmpty(acceptVal)) {
acceptVal = AdditionalMediaType.TEXT_CSV_VALUE;
}
return StringUtils.equals(acceptVal, AdditionalMediaType.TEXT_CSV_VALUE) ? this.getCsvOkResponse(value)
: this.getJsonlinesOkResponse(value);
}