Skip to content

Commit

Permalink
refactor(core): gofmt
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Svensson <[email protected]>
  • Loading branch information
Christian Svensson committed Jan 24, 2022
1 parent a067a64 commit c799ef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/core/method.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func NewMethodCall(iid InvokingID, mid MethodID, flags MethodFlag) *MethodCall {

// Copy the current state of a method call into a new independent copy
func (m *MethodCall) Clone() *MethodCall {
mn := &MethodCall{bytes.Buffer{},m.depth, m.flags}
mn := &MethodCall{bytes.Buffer{}, m.depth, m.flags}
mn.buf.Write(m.buf.Bytes())
return mn
}
Expand Down

0 comments on commit c799ef9

Please sign in to comment.