Name: el35337 Date: 09/16/98
The JavaDoc page describing the Point.translate method looks as follows:
void translate(int x, int y)
Translates this point, at location (x, y), by dx along the x axis
and dy along the y axis so that it now represents the point (x + dx,
y + dy).
The arguments should be: dx and dy (NOT x and y)
'void translate(int dx, int dy)' would be right.
(Review ID: 38863)
======================================================================