i use eclipse auto Override method:
@Override public void draw(Canvas arg0, MapView arg1, boolean arg2) {
you see that the argument arg0, arg1, arg2, is hard to read. I think if my eclipse has a mistake, because I think that it should give me:
draw(Canvas canvas, MapView mapview, boolean flag)
so my question is why my eclipse gives me arg0, etc., how to solve it?
source share