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