mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-15 04:55:22 +02:00
[198046] fix cannot copy a folder into an archive file (fix a typo)
This commit is contained in:
parent
fb44e49dfb
commit
bad965f8f5
1 changed files with 1 additions and 1 deletions
|
@ -302,7 +302,7 @@ public class UniversalFileSystemMiner extends Miner {
|
||||||
if (nonDirectoryArrayList.size() > 0)
|
if (nonDirectoryArrayList.size() > 0)
|
||||||
{
|
{
|
||||||
File[] resultFiles = (File[])nonDirectoryArrayList.toArray(new File[nonDirectoryArrayList.size()]);
|
File[] resultFiles = (File[])nonDirectoryArrayList.toArray(new File[nonDirectoryArrayList.size()]);
|
||||||
String[] resultNames = (String[])nonDirectoryArrayList.toArray(new String[nonDirectoryNamesArrayList.size()]);
|
String[] resultNames = (String[])nonDirectoryNamesArrayList.toArray(new String[nonDirectoryNamesArrayList.size()]);
|
||||||
//we need to add those files into the archive file as well.
|
//we need to add those files into the archive file as well.
|
||||||
result = handler.add(resultFiles, virtualContainer, resultNames);
|
result = handler.add(resultFiles, virtualContainer, resultNames);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue