mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-15 13:05:22 +02:00
[224576] fix: [api] Inconsistent boolean return values in SystemTarHandler (updated according to Martin's comment)
This commit is contained in:
parent
6201d0e1ad
commit
9b92fbe699
1 changed files with 1 additions and 1 deletions
|
@ -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
|
// TODO: if all children are to be deleted, we leave the tar file with a dummy entry
|
||||||
if (omitChildren != null && children.length == omitChildren.size()) {
|
if (omitChildren != null && children.length == omitChildren.size()) {
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
TarFile tarFile = getTarFile();
|
TarFile tarFile = getTarFile();
|
||||||
|
|
Loading…
Add table
Reference in a new issue