On Wed, 22 Feb 2023 15:46:47 GMT, Andy Goryachev <ango...@openjdk.org> wrote:
> are these two lines slightly misaligned? > The second line is aligned at 6 tabs from the start of the line. Because of that it looks misaligned. > perhaps we could convert this to double x = ...; double y = ...; > mouseClick(x, y); > > (there is a value in having one statement per line, in general) Since there are no repeated function calls I didn't convert them to variables. Yes converting the long statements to variables would make it more readable. I will work on that. ------------- PR: https://git.openjdk.org/jfx/pull/1039