Skip to content
This repository was archived by the owner on May 5, 2021. It is now read-only.

Commit 35c05ae

Browse files
SORMAS-Foundation#3005 - Merge conflict fix
1 parent b555494 commit 35c05ae

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

sormas-api/src/main/java/de/symeda/sormas/api/campaign/data/CampaignFormDataEntry.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
import java.io.Serializable;
1919
import java.util.Collection;
2020
import java.util.Iterator;
21-
import java.util.List;
2221
import java.util.Objects;
2322

2423
import de.symeda.sormas.api.i18n.I18nProperties;
2524
import de.symeda.sormas.api.i18n.Strings;
25+
import de.symeda.sormas.api.utils.JsonDataEntry;
2626

2727
public class CampaignFormDataEntry implements Serializable, JsonDataEntry {
2828

@@ -89,11 +89,12 @@ public static void removeNullValueEntries(Collection<CampaignFormDataEntry> entr
8989
*/
9090
@Override
9191
public boolean equals(Object o) {
92-
if (this == o) return true;
93-
if (o == null || getClass() != o.getClass()) return false;
92+
if (this == o)
93+
return true;
94+
if (o == null || getClass() != o.getClass())
95+
return false;
9496
CampaignFormDataEntry that = (CampaignFormDataEntry) o;
95-
return Objects.equals(id, that.id) &&
96-
Objects.equals(value, that.value);
97+
return Objects.equals(id, that.id) && Objects.equals(value, that.value);
9798
}
9899

99100
@Override

0 commit comments

Comments
 (0)