I have a project developed in Java 11 and have to adapt in another, but using Java 8.
Some part of this Java 11 project uses the String
method isBlank()
, that is not recognized in Java 8. What is the best approach to adapt this method in Java 8 project?