Attaches a directory separator to the specified directory string. @param path directory path @return directory string
(final String path)
| 149 | * @return directory string |
| 150 | */ |
| 151 | private static String dir(final String path) { |
| 152 | return path.isEmpty() || Strings.endsWith(path, '/') || Strings.endsWith(path, '\\') ? |
| 153 | path : path + File.separator; |
| 154 | } |
| 155 | |
| 156 | /** |
| 157 | * Sets a global option. |
no test coverage detected