Skip to content

Commit f17a4f4

Browse files
committed
style: apply gofumpt -extra formatting for same-type parameter grouping
1 parent b381a41 commit f17a4f4

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

internal/aggregated/storage/template.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ func (s *TemplateStorage) List(ctx context.Context, _ *metainternalversion.ListO
177177
}
178178

179179
// ConvertToTable converts a template object or list into kubectl table output.
180-
func (s *TemplateStorage) ConvertToTable(ctx context.Context, object runtime.Object, tableOptions runtime.Object) (*metav1.Table, error) {
180+
func (s *TemplateStorage) ConvertToTable(ctx context.Context, object, tableOptions runtime.Object) (*metav1.Table, error) {
181181
if s == nil {
182182
return nil, fmt.Errorf("assertion failed: template storage must not be nil")
183183
}

internal/aggregated/storage/workspace.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ func (s *WorkspaceStorage) List(ctx context.Context, _ *metainternalversion.List
178178
}
179179

180180
// ConvertToTable converts a workspace object or list into kubectl table output.
181-
func (s *WorkspaceStorage) ConvertToTable(ctx context.Context, object runtime.Object, tableOptions runtime.Object) (*metav1.Table, error) {
181+
func (s *WorkspaceStorage) ConvertToTable(ctx context.Context, object, tableOptions runtime.Object) (*metav1.Table, error) {
182182
if s == nil {
183183
return nil, fmt.Errorf("assertion failed: workspace storage must not be nil")
184184
}

vendor/.modules.stamp

Whitespace-only changes.

0 commit comments

Comments
 (0)