Skip to content

Commit 464b902

Browse files
committed
Fix checkstyle
1 parent 886f7d1 commit 464b902

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/aws-core/src/main/java/software/amazon/awssdk/awscore/interceptor/TraceIdExecutionInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class TraceIdExecutionInterceptor implements ExecutionInterceptor {
3939

4040
@Override
4141
public void beforeExecution(Context.BeforeExecution context, ExecutionAttributes executionAttributes) {
42-
if(lambdaFunctionNameEnvironmentVariable().isPresent()) {
42+
if (lambdaFunctionNameEnvironmentVariable().isPresent()) {
4343
String traceId = SdkInternalThreadLocal.get(CONCURRENT_TRACE_ID_KEY);
4444
if (traceId != null) {
4545
executionAttributes.putAttribute(TRACE_ID, traceId);

0 commit comments

Comments
 (0)