Skip to content

Commit bad34a8

Browse files
committed
Fix TODO text
1 parent b8c6a56 commit bad34a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

samplejava/src/main/java/com/example/chattutorialjava/ChannelActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ protected void onCreate(@Nullable Bundle savedInstanceState) {
5454
MessageListViewModel messageListViewModel = provider.get(MessageListViewModel.class);
5555
MessageInputViewModel messageInputViewModel = provider.get(MessageInputViewModel.class);
5656

57-
// TODO set custom Imgur attachment View Holder Factory
57+
// TODO set custom Imgur ViewHolderFactory
5858

5959
// Step 2 - Bind the view and ViewModels, they are loosely coupled so it's easy to customize
6060
MessageListHeaderViewModelBinding.bind(channelHeaderViewModel, binding.messageListHeaderView, this);

samplekotlin/src/main/java/com/example/chattutorial/ChannelActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class ChannelActivity : AppCompatActivity() {
4040
val messageListViewModel: MessageListViewModel by viewModels { factory }
4141
val messageInputViewModel: MessageInputViewModel by viewModels { factory }
4242

43-
// TODO set custom AttachmentViewHolderFactory
43+
// TODO set custom Imgur ViewHolderFactory
4444

4545
// Step 2 - Bind the view and ViewModels, they are loosely coupled so it's easy to customize
4646
messageListHeaderViewModel.bindView(binding.messageListHeaderView, this)

0 commit comments

Comments
 (0)