mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
fixed equals for the taskFile
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user