0
I have a command line in my JSP code that I can’t understand type StringUtils.isBlank
I know it’s a condition, what I don’t know is what’s inside. It follows part of the code:
if(StringUtils.isBlank(historicoProcedimento.getRestricoes()) && StringUtils.isBlank(historicoProcedimento.getErros())){
It means that according to the code, if(historicProceint.getRestricoes() and historicProcedimento.getErros()) are equal to null it will enter the function is that?
– user8013
Man Thank you so much for your help!
– user8013