1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

[164118] - fix for moved file not showing under filter - problem is that target filter needs to be invalidated during the copy/move operation

This commit is contained in:
David McKnight 2006-11-27 19:11:24 +00:00
parent 9910ab7073
commit c42d357e71

View file

@ -412,6 +412,16 @@ public class SystemCopyRemoteFileAction extends SystemBaseCopyAction
{
str = str.substring(0, lastSep);
}
IRemoteFile par = null;
try
{
par = fileSS.getRemoteFileObject(str);
}
catch (Exception e)
{
}
str = par.getAbsolutePath();
//if (StringCompare.compare(str, path, true))
if (str.equals(path))