Community
Participate
Working Groups
* the project is mapped to as the tag source (see TagSource)
*/
private String getCachePathFor(String remotePath) {
return remotePath;
String path = remotePath;
if(path.indexOf('\\')>0)
path = path.substring(0, path.indexOf('\\'));
if(path.indexOf('/')>0)
path = path.substring(0, path.indexOf('/'));
return path;
}
/**