Remove unused attribute

This commit is contained in:
Benoit Marty 2021-12-13 21:17:38 +01:00 committed by Benoit Marty
parent f29e14fdd8
commit 0981af3085
2 changed files with 0 additions and 4 deletions

View File

@ -222,7 +222,6 @@ class MessageItemFactory @Inject constructor(
.attributes(attributes)
.eventId(informationData.eventId)
.pollQuestion(pollContent.pollCreationInfo?.question?.question ?: "")
.pollResponseSummary(pollResponseSummary)
.pollSent(isPollSent)
.totalVotesText(totalVotesText)
.optionViewStates(optionViewStates)

View File

@ -31,9 +31,6 @@ abstract class PollItem : AbsMessageItem<PollItem.Holder>() {
@EpoxyAttribute
var pollQuestion: String? = null
@EpoxyAttribute
var pollResponseSummary: PollResponseData? = null
@EpoxyAttribute
var callback: TimelineEventController.Callback? = null