fix must override a superclass method (#919)
* fix must override a superclass method * fix must override a superclass method
This commit is contained in:
committed by
Ilkka Seppälä
parent
35dc25d480
commit
c653edf38f
@ -29,6 +29,7 @@ package com.iluwatar.factory.method;
|
||||
*/
|
||||
public class ElfBlacksmith implements Blacksmith {
|
||||
|
||||
@Override
|
||||
public Weapon manufactureWeapon(WeaponType weaponType) {
|
||||
return new ElfWeapon(weaponType);
|
||||
}
|
||||
|
@ -29,6 +29,7 @@ package com.iluwatar.factory.method;
|
||||
*/
|
||||
public class OrcBlacksmith implements Blacksmith {
|
||||
|
||||
@Override
|
||||
public Weapon manufactureWeapon(WeaponType weaponType) {
|
||||
return new OrcWeapon(weaponType);
|
||||
}
|
||||
|
Reference in New Issue
Block a user