Code improvements in Common Utils
[vfc/nfvo/driver/ems.git] / ems / boco / src / main / java / org / onap / vfc / nfvo / emsdriver / commons / utils / StringUtil.java
index e09ff8d..5fa0f9a 100644 (file)
@@ -46,10 +46,6 @@ public class StringUtil {
     }
 
     public static boolean isBank(String str) {
-        if (str == null || str.trim().length() == 0) {
-
-            return true;
-        }
-        return false;
+           return (str == null || str.trim().length() == 0); 
     }
 }