File tree Expand file tree Collapse file tree
app/src/main/java/org/schabi/newpipe/local/subscription/item Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ import org.schabi.newpipe.databinding.FeedGroupAddNewGridItemBinding
77
88class FeedGroupAddNewGridItem : BindableItem <FeedGroupAddNewGridItemBinding >() {
99 override fun getLayout (): Int = R .layout.feed_group_add_new_grid_item
10- override fun bind (viewBinding : FeedGroupAddNewGridItemBinding , position : Int ) {}
1110 override fun initializeViewBinding (view : View ) = FeedGroupAddNewGridItemBinding .bind(view)
11+ override fun bind (viewBinding : FeedGroupAddNewGridItemBinding , position : Int ) {
12+ // this is a static item, nothing to do here
13+ }
1214}
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ import org.schabi.newpipe.databinding.FeedGroupAddNewItemBinding
77
88class FeedGroupAddNewItem : BindableItem <FeedGroupAddNewItemBinding >() {
99 override fun getLayout (): Int = R .layout.feed_group_add_new_item
10- override fun bind (viewBinding : FeedGroupAddNewItemBinding , position : Int ) {}
1110 override fun initializeViewBinding (view : View ) = FeedGroupAddNewItemBinding .bind(view)
11+ override fun bind (viewBinding : FeedGroupAddNewItemBinding , position : Int ) {
12+ // this is a static item, nothing to do here
13+ }
1214}
You can’t perform that action at this time.
0 commit comments