1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-07 16:26:11 +02:00

Add doc reminder

This commit is contained in:
Martin Oberhuber 2007-04-06 21:30:09 +00:00
parent 574d0e2f51
commit c968891174

View file

@ -308,6 +308,7 @@ public class RSEFileStore extends FileStore implements IFileStore
info.setAttribute(EFS.ATTRIBUTE_EXECUTABLE, file.isExecutable());
info.setAttribute(EFS.ATTRIBUTE_ARCHIVE, file.isArchive());
info.setAttribute(EFS.ATTRIBUTE_HIDDEN, file.isHidden());
//TODO Add symbolic link attribute
if (!isDir) {
info.setLength(file.getLength());
@ -318,6 +319,7 @@ public class RSEFileStore extends FileStore implements IFileStore
}
}
catch (SystemMessageException e) {
//TODO check whether we should not throw an exception ourselves
infos = new FileInfo[0];
}
}