Closed sockeqwe closed 7 years ago
Is anyone actually using this generated build method that allows to set the arguments on an already existing / instantiated Fragment?
@NonNull public <F extends Fragment> F build(@NonNull F fragment) { fragment.setArguments(mArguments); return fragment; }
I think this generated method could be removed. I consider it as bad practice to instantiate a Fragment without using the builder.
Is anyone actually using this generated build method that allows to set the arguments on an already existing / instantiated Fragment?
I think this generated method could be removed. I consider it as bad practice to instantiate a Fragment without using the builder.