Skip to content
Snippets Groups Projects

fix: remove Working Group interests field as it is no longer active

Merged Martin Lowe requested to merge malowe/main/efuser-model-update into main
1 unresolved thread
Files
3
@@ -75,9 +75,6 @@ public abstract class EfUser {
@@ -75,9 +75,6 @@ public abstract class EfUser {
public abstract List<String> getInterests();
public abstract List<String> getInterests();
@Nullable
public abstract List<String> getWorkingGroupsInterests();
@Nullable
@Nullable
public abstract List<String> getPublicFields();
public abstract List<String> getPublicFields();
@@ -134,7 +131,6 @@ public abstract class EfUser {
@@ -134,7 +131,6 @@ public abstract class EfUser {
.setWebsite("")
.setWebsite("")
.setCountry(Country.builder().build())
.setCountry(Country.builder().build())
.setInterests(Collections.emptyList())
.setInterests(Collections.emptyList())
.setWorkingGroupsInterests(Collections.emptyList())
.setPublicFields(Collections.emptyList())
.setPublicFields(Collections.emptyList())
.setMailHistory(Collections.emptyList())
.setMailHistory(Collections.emptyList())
.setMailAlternate(Collections.emptyList())
.setMailAlternate(Collections.emptyList())
@@ -187,8 +183,6 @@ public abstract class EfUser {
@@ -187,8 +183,6 @@ public abstract class EfUser {
public abstract Builder setInterests(List<String> interests);
public abstract Builder setInterests(List<String> interests);
public abstract Builder setWorkingGroupsInterests(@Nullable List<String> interests);
public abstract Builder setPublicFields(@Nullable List<String> fields);
public abstract Builder setPublicFields(@Nullable List<String> fields);
public abstract Builder setMailHistory(@Nullable List<Email> emails);
public abstract Builder setMailHistory(@Nullable List<Email> emails);
Loading