(String value)
| 994 | // I guess we could move these to StringUtil someday |
| 995 | |
| 996 | public static boolean isCompound(String value) |
| 997 | { |
| 998 | return value.indexOf('.') != -1 ; |
| 999 | //return countParts(value) > 1; |
| 1000 | } |
| 1001 | |
| 1002 | static int countParts(String value) |
| 1003 | { |
no outgoing calls
no test coverage detected