Returns an unqualified version of the given file path.
(String path)
| 139 | * Returns an unqualified version of the given file path. |
| 140 | */ |
| 141 | private static String unqualify(String path) { |
| 142 | path = path.replace('\\', '/'); |
| 143 | return path.substring(path.lastIndexOf('/') + 1); |
| 144 | } |
| 145 | |
| 146 | |
| 147 | private static class SDEInstaller { |
no test coverage detected