ALF-12866: remove repository's dependency on remote-api.

* A dependency of the repository project on the remote-api project had crept in.
* The dependency was stopping junit tests from being run in the Eclipse, since it does not define a dependency on remote-api by repository.




git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@34213 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Matt Ward
2012-02-24 14:45:45 +00:00
parent 894056132b
commit 1cb0e9bdd4
7 changed files with 26 additions and 213 deletions

View File

@@ -1161,7 +1161,7 @@ public abstract class WebDAVMethod
if (parent == null)
{
// Node has no lock and Lock token
return new LockInfo();
return new LockInfoImpl();
}
lockInfo = m_parentLockInfo.get(parent);
@@ -1196,7 +1196,7 @@ public abstract class WebDAVMethod
{
if (lockInfo == null)
{
lockInfo = new LockInfo();
lockInfo = new LockInfoImpl();
}
// temporarily cache - for this request
m_parentLockInfo.put(parent, lockInfo);