1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

[224576] fix: [api] Inconsistent boolean return values in SystemTarHandler (updated according to Martin's comment)

This commit is contained in:
Xuan Chen 2008-03-28 17:28:15 +00:00
parent 6201d0e1ad
commit 9b92fbe699

View file

@ -1349,7 +1349,7 @@ public class SystemTarHandler implements ISystemArchiveHandler {
// TODO: if all children are to be deleted, we leave the tar file with a dummy entry
if (omitChildren != null && children.length == omitChildren.size()) {
return false;
return true;
}
TarFile tarFile = getTarFile();