Consider the following: ``` java @EActivity public class MainActivity extends Activity @UiThread protected void varagsMethod(Object... params) { // } } ``` The generated class will be this: ``` java public class MainActivity_ extends MainActivity @Override protected void varagsMethod(Object[] params) { // } } ``` This results in the following warning: _Varargs methods should only override or be overridden by other varargs methods_.
Consider the following:
The generated class will be this:
This results in the following warning: Varargs methods should only override or be overridden by other varargs methods.