mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 15:15:25 +02:00
[220300] EFS Size Property not properly updated after saving
This commit is contained in:
parent
926bb2e113
commit
cb0508dd34
1 changed files with 4 additions and 0 deletions
|
@ -29,6 +29,7 @@
|
|||
* Timur Shipilov (Xored) - [224540] [efs] RSEFileStore.mkdir(EFS.NONE, null) doesn't create parent folder
|
||||
* David Dykstal (IBM) [230821] fix IRemoteFileSubSystem API to be consistent with IFileService
|
||||
* Martin Oberhuber (Wind River) - [233993] Improve EFS error reporting
|
||||
* Martin Oberhuber (Wind River) - [220300] EFS Size Property not properly updated after saving
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.efs;
|
||||
|
@ -271,6 +272,9 @@ public class RSEFileStoreImpl extends FileStore
|
|||
|
||||
private void cacheRemoteFile(IRemoteFile remoteFile) {
|
||||
//if (_remoteFile != remoteFile) _remoteFile = remoteFile;
|
||||
if (_remoteFile != null && _remoteFile != remoteFile) {
|
||||
_remoteFile.markStale(true);
|
||||
}
|
||||
_remoteFile = remoteFile;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue