1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-16 13:35:22 +02:00

[253262] Cache Cleanup is removing .settings directory

This commit is contained in:
David McKnight 2008-11-03 19:55:52 +00:00
parent 953aeeb8ec
commit c44772c8d1

View file

@ -17,6 +17,7 @@
* Martin Oberhuber (Wind River) - [189130] Move SystemIFileProperties from UI to Core * Martin Oberhuber (Wind River) - [189130] Move SystemIFileProperties from UI to Core
* David McKnight (IBM) - [195285] mount path mapper changes * David McKnight (IBM) - [195285] mount path mapper changes
* David McKnight (IBM) - [228343] RSE unable to recover after RemoteSystemsTempfiles deletion * David McKnight (IBM) - [228343] RSE unable to recover after RemoteSystemsTempfiles deletion
* David McKnight (IBM) - [253262] Cache Cleanup is removing .settings directory
*******************************************************************************/ *******************************************************************************/
package org.eclipse.rse.internal.files.ui.resources; package org.eclipse.rse.internal.files.ui.resources;
@ -536,8 +537,10 @@ public class SystemRemoteEditManager
IResource child = children[i]; IResource child = children[i];
if (child instanceof IFolder) if (child instanceof IFolder)
{ {
if (!child.getName().equals(".settings")){ //$NON-NLS-1$
candidate = getLeastRecentlyChangedFile((IFolder) child, deletedList); candidate = getLeastRecentlyChangedFile((IFolder) child, deletedList);
} }
}
else else
{ {
candidate = (IFile) child; candidate = (IFile) child;