andrewgaul commented on this pull request.
> * @return
*/
- private static String normalize(String pathToBeNormalized) {
- if (null != pathToBeNormalized &&
pathToBeNormalized.contains(BACK_SLASH)) {
- if (!BACK_SLASH.equals(File.separator)) {
- return pathToBeNormalized.replace(BACK_SLASH, File.separator);
- }
+ private static String normalize(String path) {
+ if (null != path) {
Make this conditional for Windows?
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/1024#pullrequestreview-5329838