Skip to content

Commit 362de1c

Browse files
committed
fix: checkstyle errors
1 parent 8d91c5d commit 362de1c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AwsPackageFixturesGeneratorIntegration.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@
1919
import java.util.Calendar;
2020
import java.util.function.BiConsumer;
2121
import java.util.function.Consumer;
22-
import java.util.stream.Collectors;
2322
import java.util.regex.Pattern;
23+
import java.util.stream.Collectors;
2424

25-
import software.amazon.smithy.aws.typescript.codegen.AwsServiceIdIntegration;
2625
import software.amazon.smithy.codegen.core.SymbolProvider;
2726
import software.amazon.smithy.model.Model;
2827
import software.amazon.smithy.model.knowledge.TopDownIndex;
@@ -79,7 +78,7 @@ public void writeAdditionalFiles(
7978
String operationName = firstOperation.getId().getName();
8079
resource = resource.replaceAll(Pattern.quote("${commandName}"), operationName);
8180
resource = resource.replaceAll(Pattern.quote("${operationName}"),
82-
operationName.substring(0,1).toLowerCase() + operationName.substring(1));
81+
operationName.substring(0, 1).toLowerCase() + operationName.substring(1));
8382

8483
writer.write(resource);
8584
});

0 commit comments

Comments
 (0)