What are the advantages of this approach (using static nested class in my class MyAdapter extends RecyclerView.Adapter):
static class MyVH extends RecyclerView.ViewHolder {...}
And this approach (using member inner class):
class MyVH extends RecyclerView.ViewHolder {...}
Or it doesn't affect performance and both approaches could be used?