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) {
Ideally we would allow `\` for Linux systems since blobstores allow this
character.
--
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