mirror of https://github.com/databricks/cli.git
Remove unused name field
This commit is contained in:
parent
2765a41cf2
commit
13049a555b
|
@ -2,7 +2,6 @@ package mutator
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
@ -11,7 +10,6 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type initializeURLs struct {
|
type initializeURLs struct {
|
||||||
name string
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// InitializeURLs makes sure the URL field of each resource is configured.
|
// InitializeURLs makes sure the URL field of each resource is configured.
|
||||||
|
@ -23,7 +21,7 @@ func InitializeURLs() bundle.Mutator {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *initializeURLs) Name() string {
|
func (m *initializeURLs) Name() string {
|
||||||
return fmt.Sprintf("InitializeURLs(%s)", m.name)
|
return "InitializeURLs"
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *initializeURLs) Apply(ctx context.Context, b *bundle.Bundle) diag.Diagnostics {
|
func (m *initializeURLs) Apply(ctx context.Context, b *bundle.Bundle) diag.Diagnostics {
|
||||||
|
|
Loading…
Reference in New Issue