File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
smithy-model/src/main/java/software/amazon/smithy/model/shapes Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -188,6 +188,7 @@ public boolean equals(Object other) {
188188 ResourceShape otherShape = (ResourceShape ) other ;
189189 return identifiers .equals (otherShape .identifiers )
190190 && Objects .equals (create , otherShape .create )
191+ && Objects .equals (put , otherShape .put )
191192 && Objects .equals (read , otherShape .read )
192193 && Objects .equals (update , otherShape .update )
193194 && Objects .equals (delete , otherShape .delete )
@@ -306,6 +307,9 @@ public Builder removeFromAllOperationBindings(ToShapeId toShapeId) {
306307 if (Objects .equals (create , id )) {
307308 create = null ;
308309 }
310+ if (Objects .equals (put , id )) {
311+ put = null ;
312+ }
309313 if (Objects .equals (read , id )) {
310314 read = null ;
311315 }
You can’t perform that action at this time.
0 commit comments