Java 13 has been released and now it is possible to write multiline string literals
String multiLineStr =
"""
SELECT * FROM USERS
WHERE USER_ID = '1'
""";
Unfortunately checkstyle fails to parse it now and i have to make a difficult choice between turning off checkstyle in my project and using not the latest version of java.
Do you have any plans to support it in the nearest future?
Java 13 has been released and now it is possible to write multiline string literals
Unfortunately checkstyle fails to parse it now and i have to make a difficult choice between turning off checkstyle in my project and using not the latest version of java.
Do you have any plans to support it in the nearest future?