Skip to content

Commit

Permalink
chore: checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
kuhe committed Apr 4, 2024
1 parent 08f9182 commit 5593143
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
import java.util.Set;
import java.util.function.Consumer;
import java.util.logging.Logger;
import java.util.stream.Stream;

import software.amazon.smithy.aws.traits.ServiceTrait;
import software.amazon.smithy.codegen.core.Symbol;
import software.amazon.smithy.codegen.core.SymbolProvider;
Expand Down Expand Up @@ -140,7 +138,9 @@ public Model preprocessModel(Model model, TypeScriptSettings settings) {
if (operationShape.getOutput().isEmpty()) {
continue;
}
StructureShape structureShape = model.expectShape(operationShape.getOutputShape(), StructureShape.class);
StructureShape structureShape = model.expectShape(
operationShape.getOutputShape(), StructureShape.class
);

Set<Map.Entry<String, MemberShape>> memberEntries = structureShape
.getAllMembers()
Expand Down

0 comments on commit 5593143

Please sign in to comment.