code-coverage-Emilia #24

Merged
erns6604 merged 14 commits from code-coverage-Emilia into main 2025-10-31 16:29:43 +01:00
Showing only changes of commit cb72ca47cd - Show all commits

View File

@@ -37,13 +37,6 @@ public abstract class Spell {
return spellName.equals(spell.spellName);
}
@Override
public int hashCode() {
int result = spellName.hashCode();
result = 31 * result + cost;
result = 31 * result + range;
return result;
}
@Override
public String toString() {