1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 23:25:26 +02:00

Improve tracing for SftpFileService.delete

This commit is contained in:
Martin Oberhuber 2006-08-25 08:33:18 +00:00
parent f0eead0d80
commit 1881d5a14f

View file

@ -542,7 +542,7 @@ public class SftpFileService extends AbstractFileService implements IFileService
public boolean delete(IProgressMonitor monitor, String remoteParent, String fileName) throws SystemMessageException
{
boolean ok=false;
Activator.trace("SftpFileService.delete"); //$NON-NLS-1$
Activator.trace("SftpFileService.delete.waitForLock"); //$NON-NLS-1$
if (fDirChannelMutex.waitForLock(monitor, fDirChannelTimeout)) {
try {
String fullPath = remoteParent + '/' + fileName;