File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
crates/stackable-versioned-macros/src/codegen Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ impl Module {
7474
7575 let version_ident = & version. ident ;
7676
77- for container in self . containers . iter ( ) {
77+ for container in & self . containers {
7878 container_definitions. extend ( container. generate_definition ( version) ) ;
7979
8080 from_impls. extend ( container. generate_from_impl (
@@ -126,7 +126,7 @@ impl Module {
126126
127127 // Generate the final Kubernetes specific code for each container (which uses Kubernetes
128128 // specific features) which is appended to the end of container definitions.
129- for container in self . containers . iter ( ) {
129+ for container in & self . containers {
130130 if let Some ( (
131131 kubernetes_merge_crds_fn_calls,
132132 kubernetes_enum_variant_idents,
You can’t perform that action at this time.
0 commit comments