Remove unnecessary initializer

This commit is contained in:
Michael Miller 2019-11-03 12:05:26 -07:00
parent 9294599440
commit f1a7018718

View file

@ -4,10 +4,6 @@ require "./value_method_stub"
module Spectator::Mocks
class NilMethodStub < GenericMethodStub(Nil)
def initialize(name, source, args = nil)
super(name, source, args)
end
def call(_args : GenericArguments(T, NT)) : ReturnType forall T, NT
nil
end