Skip to content

Commit e33673d

Browse files
committedMar 12, 2025
chore(autofmt): Automated formatting
1 parent ee9e51a commit e33673d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed
 

‎common/schema/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ var _ Symbol = (*Config)(nil)
1919

2020
func (s *Config) GetName() string { return s.Name }
2121
func (s *Config) IsExported() bool { return false }
22-
func (s *Config) IsGenerated() bool { return false }
22+
func (s *Config) IsGenerated() bool { return false }
2323
func (s *Config) Position() Position { return s.Pos }
2424
func (s *Config) String() string {
2525
w := &strings.Builder{}

‎common/schema/enum.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ func (e *Enum) schemaChildren() []Node {
5252
}
5353
return children
5454
}
55-
func (e *Enum) GetName() string { return e.Name }
56-
func (e *Enum) IsExported() bool { return e.Export }
55+
func (e *Enum) GetName() string { return e.Name }
56+
func (e *Enum) IsExported() bool { return e.Export }
5757
func (e *Enum) IsGenerated() bool { return false }
5858

5959
// IsValueEnum determines whether this is a type or value enum using `e.Type` alone

‎common/schema/secret.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ var _ Symbol = (*Secret)(nil)
1919

2020
func (s *Secret) GetName() string { return s.Name }
2121
func (s *Secret) IsExported() bool { return false }
22-
func (s *Secret) IsGenerated() bool { return false }
22+
func (s *Secret) IsGenerated() bool { return false }
2323
func (s *Secret) Position() Position { return s.Pos }
2424
func (s *Secret) String() string {
2525
w := &strings.Builder{}

‎common/schema/topic.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ func (t *Topic) schemaChildren() []Node {
3636
return children
3737
}
3838

39-
func (t *Topic) GetName() string { return t.Name }
40-
func (t *Topic) IsExported() bool { return t.Export }
39+
func (t *Topic) GetName() string { return t.Name }
40+
func (t *Topic) IsExported() bool { return t.Export }
4141
func (t *Topic) IsGenerated() bool { return false }
4242

4343
func (t *Topic) String() string {

‎common/schema/typealias.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ func (t *TypeAlias) schemaChildren() []Node {
4444
return children
4545
}
4646

47-
func (t *TypeAlias) GetName() string { return t.Name }
48-
func (t *TypeAlias) IsExported() bool { return t.Export }
47+
func (t *TypeAlias) GetName() string { return t.Name }
48+
func (t *TypeAlias) IsExported() bool { return t.Export }
4949
func (t *TypeAlias) IsGenerated() bool { return false }

0 commit comments

Comments
 (0)