Skip to content

Commit

Permalink
removed the notifyCaller method as it is no longer in use
Browse files Browse the repository at this point in the history
  • Loading branch information
dwhutchison committed Jun 13, 2019
1 parent d6615d0 commit 3b8dfd9
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions uasc/secure_channel.go
Original file line number Diff line number Diff line change
Expand Up @@ -496,12 +496,6 @@ func (s *SecureChannel) notifyCallers(ctx context.Context, err error) {
s.mu.Unlock()
}

func (s *SecureChannel) notifyCaller(ctx context.Context, reqid uint32, svc interface{}, err error) {
s.mu.Lock()
s.notifyCallerLock(ctx, reqid, svc, err)
s.mu.Unlock()
}

func (s *SecureChannel) notifyCallerLock(ctx context.Context, reqid uint32, svc interface{}, err error) {
if err != nil {
debug.Printf("uasc %d/%d: %v", s.c.ID(), reqid, err)
Expand Down

0 comments on commit 3b8dfd9

Please sign in to comment.