Rename Reptile to Amphibian

This commit is contained in:
Cristian Stancalau 2020-11-09 19:20:38 +02:00
parent 141f05d179
commit ef3f984d8e
1 changed files with 1 additions and 1 deletions

View File

@ -4,6 +4,6 @@ public class Amphibian implements Animal {
@Override
public String getName() {
return "Reptile";
return "Amphibian";
}
}