It may turn out to be the case that this should be optimized further to pull out the extension, but there doesn't seem to be such high use of filename checking to warrant further tinkering. @param file The filename to sanitise. @return windows safe file name
(final File file)
| 166 | * @return windows safe file name |
| 167 | */ |
| 168 | private static String getWindowsSafeFilename(final File file) |
| 169 | { |
| 170 | return file.getName().toLowerCase(); |
| 171 | } |
| 172 | } |
no test coverage detected