Merged DEV/TEMPORARY to HEAD

23222: ALF-3707: Alfresco Sharepoint protocol and Office 2010 issue
      Problem related to incorrect response of VTI WebDAV Lock method for Windows 7 clients was fixed. 
      Requested refactoring was done:
      - Code duplication was removed from VTI Lock, Unlock, PropPatch methods. 
      - Changes related to inheritance were added to original WebDAV methods.
      - VTI Propfind implementation was detached from original WebDAV PropFind
      - Logging was added for empty catch blocks 
      - Unused import was removed
      - Unnecessary empty catch blocks were removed


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@23225 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Dave Ward
2010-10-22 11:21:40 +00:00
parent 61079d3769
commit ea8e5bdfc6
4 changed files with 87 additions and 15 deletions

View File

@@ -117,7 +117,7 @@ public class UnlockMethod extends WebDAVMethod
FileInfo lockNodeInfo = null;
try
{
lockNodeInfo = getDAVHelper().getNodeForPath(getRootNodeRef(), getPath(), getServletPath());
lockNodeInfo = getNodeForPath(getRootNodeRef(), getPath(), getServletPath());
}
catch (FileNotFoundException e)
{