@@ -35,30 +35,30 @@ type TradeClient struct {
3535}
3636
3737// OnCreate implemented as part of Application interface
38- func (e TradeClient ) OnCreate (sessionID quickfix.SessionID ) {}
38+ func (e TradeClient ) OnCreate (_ quickfix.SessionID ) {}
3939
4040// OnLogon implemented as part of Application interface
41- func (e TradeClient ) OnLogon (sessionID quickfix.SessionID ) {}
41+ func (e TradeClient ) OnLogon (_ quickfix.SessionID ) {}
4242
4343// OnLogout implemented as part of Application interface
44- func (e TradeClient ) OnLogout (sessionID quickfix.SessionID ) {}
44+ func (e TradeClient ) OnLogout (_ quickfix.SessionID ) {}
4545
4646// FromAdmin implemented as part of Application interface
47- func (e TradeClient ) FromAdmin (msg * quickfix.Message , sessionID quickfix.SessionID ) (reject quickfix.MessageRejectError ) {
47+ func (e TradeClient ) FromAdmin (_ * quickfix.Message , _ quickfix.SessionID ) (reject quickfix.MessageRejectError ) {
4848 return nil
4949}
5050
5151// ToAdmin implemented as part of Application interface
52- func (e TradeClient ) ToAdmin (msg * quickfix.Message , sessionID quickfix.SessionID ) {}
52+ func (e TradeClient ) ToAdmin (_ * quickfix.Message , _ quickfix.SessionID ) {}
5353
5454// ToApp implemented as part of Application interface
55- func (e TradeClient ) ToApp (msg * quickfix.Message , sessionID quickfix.SessionID ) (err error ) {
55+ func (e TradeClient ) ToApp (msg * quickfix.Message , _ quickfix.SessionID ) (err error ) {
5656 utils .PrintInfo (fmt .Sprintf ("Sending: %s" , msg .String ()))
5757 return
5858}
5959
6060// FromApp implemented as part of Application interface. This is the callback for all Application level messages from the counter party.
61- func (e TradeClient ) FromApp (msg * quickfix.Message , sessionID quickfix.SessionID ) (reject quickfix.MessageRejectError ) {
61+ func (e TradeClient ) FromApp (msg * quickfix.Message , _ quickfix.SessionID ) (reject quickfix.MessageRejectError ) {
6262 utils .PrintInfo (fmt .Sprintf ("FromApp: %s" , msg .String ()))
6363 return
6464}
0 commit comments