Skip to content

Commit

Permalink
switch order of string method for executable type
Browse files Browse the repository at this point in the history
  • Loading branch information
ecrupper committed Aug 9, 2023
1 parent 991b28f commit 31b56d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/build_executable.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@ func (b *BuildExecutable) SetData(v []byte) {
// String implements the Stringer interface for the BuildExecutable type.
func (b *BuildExecutable) String() string {
return fmt.Sprintf(`{
ID: %d,
BuildID: %d,
Data: %s,
ID: %d,
}`,
b.GetID(),
b.GetBuildID(),
b.GetData(),
b.GetID(),
)
}

0 comments on commit 31b56d9

Please sign in to comment.