The message is:
Warning:(ROW, COLUMN) java: as of release 10, 'var' is a restricted local variable type and cannot be used for type declarations or as the element type of an array
Am using Lombok 1.18.12
from Java 11 targeting version 7, that's how come those var
are in there.
How to suppress? What to throw in @SuppressWarnings(...)
?
[...]
var excepted = false;
[...]