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:
parent
953aeeb8ec
commit
c44772c8d1
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue