Rename Reptile to Amphibian

This commit is contained in:
Cristian Stancalau
2020-11-09 19:20:38 +02:00
parent bd9d8d24fd
commit 64c1160f9d

View File

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