Skip to content

Commit

Permalink
Fix typo in function name
Browse files Browse the repository at this point in the history
  • Loading branch information
therealsujitk committed Nov 13, 2023
1 parent 78df47e commit d6fb247
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public AttachmentsItemAdapter.ViewHolder onCreateViewHolder(@NonNull ViewGroup p

@Override
public void onBindViewHolder(@NonNull ViewHolder holder, int position) {
holder.setReceipt(this.attachments.get(position));
holder.setAttachment(this.attachments.get(position));
}

@Override
Expand All @@ -63,7 +63,7 @@ public ViewHolder(@NonNull View itemView) {
this.attachment = (LinearLayout) itemView;
}

public void setReceipt(Attachment attachment) {
public void setAttachment(Attachment attachment) {
TextView fileName = this.attachment.findViewById(R.id.text_view_file_name);
TextView fileSize = this.attachment.findViewById(R.id.text_view_file_size);

Expand Down

0 comments on commit d6fb247

Please sign in to comment.