(final String resourcePath)
| 314 | } |
| 315 | |
| 316 | public static String getParent(final String resourcePath) { |
| 317 | File f = new File(resourcePath); |
| 318 | if (f.getParentFile().getName() != null) |
| 319 | return f.getParentFile().getName(); |
| 320 | return ""; |
| 321 | } |
| 322 | } |
no test coverage detected