style: ID instead of Id

This commit is contained in:
2026-02-06 23:45:29 -05:00
parent a2355fcd56
commit 8b80cea32b
3 changed files with 6 additions and 6 deletions

View File

@@ -33,7 +33,7 @@ func (b convertedProcess[T]) Set(r Repr) error {
return b.process.Set(t) return b.process.Set(t)
} }
return fmt.Errorf("Incorrent format '%s' for engine '%s'.", r.Id(), b.inType) return fmt.Errorf("Incorrent format '%s' for engine '%s'.", r.ID(), b.inType)
} }
func (b convertedProcess[T]) Step(i int) bool { func (b convertedProcess[T]) Step(i int) bool {

View File

@@ -44,7 +44,7 @@ func (r *Registry) GetDefaultEngine(id string) (Engine, error) {
} }
func (r *Registry) ConvertTo(repr Repr, outType string) (Repr, error) { func (r *Registry) ConvertTo(repr Repr, outType string) (Repr, error) {
path, err := r.ConversionPath(repr.Id(), outType) path, err := r.ConversionPath(repr.ID(), outType)
if err != nil { if err != nil {
return nil, err return nil, err
} }
@@ -61,9 +61,9 @@ func (r *Registry) ConvertTo(repr Repr, outType string) (Repr, error) {
} }
func (r *Registry) Marshal(repr Repr) (string, error) { func (r *Registry) Marshal(repr Repr) (string, error) {
m, ok := r.marshalers[repr.Id()] m, ok := r.marshalers[repr.ID()]
if !ok { if !ok {
return "", fmt.Errorf("no marshaler for '%s'", repr.Id()) return "", fmt.Errorf("no marshaler for '%s'", repr.ID())
} }
return m.Encode(repr) return m.Encode(repr)

View File

@@ -4,7 +4,7 @@ type Repr interface {
// Id returns to name of the objects underlying representation. If is // Id returns to name of the objects underlying representation. If is
// assumed that if two Repr objects have the same Id(), they share the same // assumed that if two Repr objects have the same Id(), they share the same
// representation. // representation.
Id() string ID() string
Data() any Data() any
} }
@@ -14,7 +14,7 @@ type baseRepr struct {
data any data any
} }
func (r baseRepr) Id() string { return r.id } func (r baseRepr) ID() string { return r.id }
func (r baseRepr) Data() any { return r.data } func (r baseRepr) Data() any { return r.data }