git checkout -b <branchname>
git add
git commit -m "description of changes"
# <type>: (If applied, this commit will...) <subject> (Max 50 char) | |
# |<---- Using a Maximum Of 50 Characters ---->| | |
# Example: MRV-13: Introduce the widget to handle image creation | |
# (Optional) Explain why this change is being made | |
# |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->| | |
# (Optional) Provide links or keys to any relevant tickets, articles or other resources | |
# Example: closes MRV-22 |
private List<Wizards> getWizards(){
return List.of(
new Wizards("Gryfindor","phoenix feather core","Half Blood","Male","Harry Potter"),
new Wizards("Gryfindor","unicorn hair core","Pure Blood","Male","Ronald Wisely"),
new Wizards("Gryfindor","dragon heart string core","Mud Blood","Female","Hermione Granger"),
new Wizards("Slytherin","unicorn hair core","Pure Blood","Male","Draco Malfoy"),
new Wizards("Ravenclaw","unicorn hair core","Pure Blood","Male","Cedric Diggory")