# File lib/mocha/central.rb, line 18
18:     def unstub(method)
19:       if existing = stubba_methods.detect { |m| m.matches?(method) }
20:         existing.unstub
21:         stubba_methods.delete(existing)
22:       end
23:     end