adding new module (#11199)

This commit is contained in:
Kayvan Tehrani
2021-09-20 00:25:13 +04:30
committed by GitHub
parent 23fec3d8a7
commit 85186f9505
3 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package com.baeldung;
import org.apache.commons.lang3.StringUtils;
public class Main {
public static void main(String[] args) {
StringUtils.isBlank(" ");
}
}