(String f)
| 103 | } |
| 104 | |
| 105 | public static String getFileNameNoSuffix(String f) { |
| 106 | if ( f==null ) return null; |
| 107 | f = getFileName(f); |
| 108 | return f.substring(0, f.lastIndexOf('.')); |
| 109 | } |
| 110 | |
| 111 | public static String getFileName(String fullFileName) { |
| 112 | if ( fullFileName==null ) return null; |
no test coverage detected