1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-10 17:55:39 +02:00

[218173] [local] non-generic filters don't work

This commit is contained in:
David McKnight 2008-02-07 16:10:19 +00:00
parent 4a3477984f
commit 7f8ebca07d

View file

@ -29,6 +29,7 @@
* Xuan Chen (IBM) - [210555] [regression] NPE when deleting a file on SSH * Xuan Chen (IBM) - [210555] [regression] NPE when deleting a file on SSH
* Kevin Doyle (IBM) - [208778] [efs][api] RSEFileStore#getOutputStream() does not support EFS#APPEND * Kevin Doyle (IBM) - [208778] [efs][api] RSEFileStore#getOutputStream() does not support EFS#APPEND
* David McKnight (IBM) - [209593] [api] add support for "file permissions" and "owner" properties for unix files * David McKnight (IBM) - [209593] [api] add support for "file permissions" and "owner" properties for unix files
* Radoslav Gerganov (ProSyst) - [218173] [local] non-generic filters don't work
********************************************************************************/ ********************************************************************************/
package org.eclipse.rse.internal.services.local.files; package org.eclipse.rse.internal.services.local.files;
@ -774,7 +775,7 @@ public class LocalFileService extends AbstractFileService implements IFileServic
results.add(new LocalHostFile(file)); results.add(new LocalHostFile(file));
} }
} }
else if (!file.exists()) else if (file.exists())
{ {
results.add(new LocalHostFile(file)); results.add(new LocalHostFile(file));
} }