Skip to content

Commit 822befa

Browse files
committed
chore(codegen): use priority instead of getOrder to sort Integrations
Note this class is being deleted as part of #3664 so this change will not be needed when that PR is merged.
1 parent 925d12b commit 822befa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ public final class AddS3ObjectSizeMemberShapeType implements TypeScriptIntegrati
4242
);
4343

4444
@Override
45-
public byte getOrder() {
45+
public byte priority() {
4646
// This integration should happen before other integrations that rely on the presence of this trait
47-
return -60;
47+
return 60;
4848
}
4949

5050
@Override

0 commit comments

Comments
 (0)