```java @EFragment(R.layout.fragment_my_layout) public class MyFragment extends Fragment { @ViewById(R.id.myView) void initMyView(TextView myView) { } } ``` This generates wrong code in `MyFragment_` ```java ... @Override public void onDestroyView() { super.onDestroyView(); contentView_ = null; initMyView = null; // This is wrong! } ```
This generates wrong code in
MyFragment_... @Override public void onDestroyView() { super.onDestroyView(); contentView_ = null; initMyView = null; // This is wrong! }