Remove deprecated storage service fields.

This commit is contained in:
Greyson Parrelli
2023-11-15 16:51:00 -05:00
parent 12f9ac3aa4
commit cf7d5b3481
9 changed files with 9 additions and 93 deletions

View File

@@ -195,10 +195,6 @@ public final class SignalAccountRecord implements SignalRecord {
diff.add("StoryViewedReceipts");
}
if (hasReadOnboardingStory() != that.hasReadOnboardingStory()) {
diff.add("HasReadOnboardingStory");
}
if (hasSeenGroupStoryEducationSheet() != that.hasSeenGroupStoryEducationSheet()) {
diff.add("HasSeenGroupStoryEducationSheet");
}
@@ -329,10 +325,6 @@ public final class SignalAccountRecord implements SignalRecord {
return proto.storyViewReceiptsEnabled;
}
public boolean hasReadOnboardingStory() {
return proto.hasReadOnboardingStory;
}
public boolean hasSeenGroupStoryEducationSheet() {
return proto.hasSeenGroupStoryEducationSheet;
}
@@ -701,11 +693,6 @@ public final class SignalAccountRecord implements SignalRecord {
return this;
}
public Builder setHasReadOnboardingStory(boolean hasReadOnboardingStory) {
builder.hasReadOnboardingStory(hasReadOnboardingStory);
return this;
}
public Builder setHasSeenGroupStoryEducationSheet(boolean hasSeenGroupStoryEducationSheet) {
builder.hasSeenGroupStoryEducationSheet(hasSeenGroupStoryEducationSheet);
return this;