I'm used to long lines, 160 chars, because I like Monospace fonts and I have a wide LCD screen.
The problem is, that the Code Style formatter doesn't support "hard return" as far as I know.
Such a long lines are not convenient for all cases, it is good for long function definitions with Generics parameters that throws a lot of exceptions, but it is not good for something like this :
boolean success = toBool(new WebDriverWait(driver, entities.size() * interval).until(allSucceedOrFail(entities.size(), By.className(uploadSuccessCN),
By.className(uploadErrorCN))));
Does anyone have an idea how to workaround this ?