From ffebe52a4fe60f2a02b8280450d4fdbd94041907 Mon Sep 17 00:00:00 2001 From: Lucas Alves Date: Thu, 1 Jul 2021 00:55:09 -0300 Subject: [PATCH] Change Build for NewVehicle in motorbike_factory * To implements VehicleFactory the name of the function is changed --- creational/abstract_factory/motorbike_factory.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/creational/abstract_factory/motorbike_factory.go b/creational/abstract_factory/motorbike_factory.go index 4fccb2f..d474da1 100644 --- a/creational/abstract_factory/motorbike_factory.go +++ b/creational/abstract_factory/motorbike_factory.go @@ -12,7 +12,7 @@ const ( type MotorbikeFactory struct{} -func (m *MotorbikeFactory) Build(v int) (Vehicle, error) { +func (m *MotorbikeFactory) NewVehicle(v int) (Vehicle, error) { switch v { case SportMotorbikeType: return new(SportMotorbike), nil