@@ -107,7 +107,7 @@ func mergeLogging(c any, o any, p tree.Path) (any, error) {
107107}
108108
109109// environment must be first converted into yaml sequence syntax so we can append
110- func mergeEnvironment (c any , o any , p tree.Path ) (any , error ) {
110+ func mergeEnvironment (c any , o any , _ tree.Path ) (any , error ) {
111111 right := convertIntoSequence (c )
112112 left := convertIntoSequence (o )
113113 return append (right , left ... ), nil
@@ -136,14 +136,14 @@ func convertIntoSequence(value any) []any {
136136 return nil
137137}
138138
139- func mergeUlimit (c any , o any , p tree.Path ) (any , error ) {
139+ func mergeUlimit (_ any , o any , p tree.Path ) (any , error ) {
140140 over , ismapping := o .(map [string ]any )
141141 if base , ok := o .(map [string ]any ); ok && ismapping {
142142 return mergeMappings (base , over , p )
143143 }
144144 return o , nil
145145}
146146
147- func override (c any , other any , p tree.Path ) (any , error ) {
147+ func override (_ any , other any , _ tree.Path ) (any , error ) {
148148 return other , nil
149149}
0 commit comments