| 1 | package com.utils; |
| 2 | |
| 3 | public class StringUtil { |
| 4 | |
| 5 | public static boolean isEmpty(String s){ |
| 6 | if(s==null || s.equals("") || s.equals("null")){ |
| 7 | return true; |
| 8 | } |
| 9 | return false; |
| 10 | } |
| 11 | |
| 12 | public static boolean isNotEmpty(String s){ |
| 13 | return !StringUtil.isEmpty(s); |
| 14 | } |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected