fixed equals for the taskFile

This commit is contained in:
Ekaterina Tuzova
2015-09-28 16:52:03 +03:00
parent a6fbff6218
commit 5950e861dd
@@ -164,7 +164,7 @@ public class TaskFile {
TaskFile that = (TaskFile)o;
if (getIndex() != that.getIndex()) return false;
if (name.equals(that.name)) return false;
if (!name.equals(that.name)) return false;
final List<AnswerPlaceholder> answerPlaceholders = getAnswerPlaceholders();
final List<AnswerPlaceholder> thatAnswerPlaceholders = that.getAnswerPlaceholders();