I have the problem with the line length in stylecheck.
The code of condition likes as below:
1 if (Double.compare(Double.parseDouble(olderDataValue),
2 Double.parseDouble(newerDataValue)) != 0) {
It should be two separate lines and should be no any violation on line length.
But stylecheck complained the length of line is longer than 80 with actually length is 110.
Line is longer than 80 characters (found 110).
Seems it considers above condition is oneline (not two) like
if (Double.compare(Double.parseDouble(olderDataValue),Double.parseDouble(newerDataValue)) != 0) {
is it a bug in stylecheck?