Skip to content

Commit 2639d88

Browse files
author
Sinelnikov Michail
committed
bump
Signed-off-by: Sinelnikov Michail <mikhail.sinelnikov@flant.com>
1 parent fe5ef79 commit 2639d88

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

pkg/kube/object_patch/operation.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,12 +201,15 @@ type patchOperation struct {
201201
func (op *patchOperation) GetName() string {
202202
return op.name
203203
}
204+
204205
func (op *patchOperation) SetName(name string) {
205206
op.name = name
206207
}
208+
207209
func (op *patchOperation) SetNamePrefix(prefix string) {
208210
op.name = prefix + op.name
209211
}
212+
210213
func (op *patchOperation) GetNamespace() string {
211214
return op.namespace
212215
}

pkg/kube/object_patch/patch_collector.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ func (dop *PatchCollector) PatchWithMerge(mergePatch any, apiVersion string, kin
154154
dop.add(NewMergePatchOperation(mergePatch, apiVersion, kind, namespace, name, opts...))
155155
}
156156

157-
func (dop *PatchCollector) WriteOutput(w io.Writer) error {
158-
//TODO implement me
157+
func (dop *PatchCollector) WriteOutput(_ io.Writer) error {
158+
// TODO implement me
159159
return nil
160160
}

0 commit comments

Comments
 (0)