1 16 package org.apache.jetspeed.modules.actions.portlets.designer; 17 18 24 public class FormatPath 25 { 26 27 public FormatPath() 28 { 29 } 30 31 38 public static String normalizeDirectoryPath(String path) 39 { 40 if (path == null) 41 { 42 return path; 43 } 44 String resultPath = path.replace('\\', '/'); 46 if (!resultPath.endsWith("/")) 47 { 48 return resultPath.concat("/"); 49 } 50 return resultPath; 51 } 52 53 } | Popular Tags |