Skip to content

Commit f0ac591

Browse files
authored
Remove extra space
1 parent 4225470 commit f0ac591

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aws-lambda-java-runtime-interface-client/src/main/jni/com_amazonaws_services_lambda_runtime_api_client_runtimeapi_NativeClient.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ JNIEXPORT jobject JNICALL Java_com_amazonaws_services_lambda_runtime_api_client_
117117
}
118118

119119
if(response.cognito_identity != ""){
120-
CHECK_EXCEPTION(env, env->SetObjectField(invocationRequest, cognitoIdentityField, env->NewStringUTF(response.cognito_identity.c_str())));
120+
CHECK_EXCEPTION(env, env->SetObjectField(invocationRequest, cognitoIdentityField, env->NewStringUTF(response.cognito_identity.c_str())));
121121
}
122122

123123
bytes = reinterpret_cast<const jbyte*>(response.payload.c_str());

0 commit comments

Comments
 (0)