Skip to content

Commit

Permalink
Merge pull request #65 from crimera/dev
Browse files Browse the repository at this point in the history
chore: Merge branch `dev` to `main`
  • Loading branch information
crimera authored Jun 11, 2024
2 parents 649894d + 764ebfd commit 6b9afd5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public ViewHolder(CustomAdapter adapter, View view) {
}

@Override
public RecyclerView.c0 I(int i, RecyclerView recyclerView){
public RecyclerView.c0 onCreateViewHolder(int i, RecyclerView recyclerView){
View view = LayoutInflater.from(recyclerView.getContext())
.inflate(
Utils.getResourceIdentifier("item_row", "layout"),
Expand All @@ -104,7 +104,7 @@ public RecyclerView.c0 I(int i, RecyclerView recyclerView){
}

@Override
public void F(ViewHolder viewHolder, int i) {
public void onBindViewHolder(ViewHolder viewHolder, int i) {
flagTextView.setText(flags.get(i).getName());
enabled.setChecked(flags.get(i).getEnabled());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ public static abstract class e<VH extends c0> {
// get count
public abstract int getCount();

public abstract c0 I(int i, RecyclerView recyclerView);
public abstract c0 onCreateViewHolder(int i, RecyclerView recyclerView);

public abstract void F(VH vh, int i);
public abstract void onBindViewHolder(VH vh, int i);

public final void D(int i) {}
}
Expand Down

0 comments on commit 6b9afd5

Please sign in to comment.