Make splitAllPaths and getNodeForPath overridable again for cloud

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@48619 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Dave Ward
2013-03-27 09:33:36 +00:00
parent f16c56e217
commit 35bd1843b0

View File

@@ -402,7 +402,7 @@ public class WebDAVHelper
* @param path the string to split
* @return an array of all the path components
*/
public final List<String> splitAllPaths(String path)
public List<String> splitAllPaths(String path)
{
if (path == null || path.length() == 0)
{
@@ -463,7 +463,7 @@ public class WebDAVHelper
* @throws FileNotFoundException
* if the path doesn't refer to a valid node
*/
public final FileInfo getNodeForPath(NodeRef rootNodeRef, String path) throws FileNotFoundException
public FileInfo getNodeForPath(NodeRef rootNodeRef, String path) throws FileNotFoundException
{
if (rootNodeRef == null)
{