Skip to content
Snippets Groups Projects
Commit b55ccc7e authored by Erik Moravec's avatar Erik Moravec Committed by Ján Dovjak
Browse files

fix: fixed wrong type in TeamCreateDto equals method

parent 96e14ecd
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ public class TeamCreateDto {
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
TeamDto teamDTO = (TeamDto) o;
TeamCreateDto teamDTO = (TeamCreateDto) o;
return getName().equals(teamDTO.getName());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment