mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +02:00
Patch from Sergey Prigogin for bug[195778] Silly bug in BuildEntryStorage.java
This commit is contained in:
parent
d6c853ae8f
commit
af85d3c23d
1 changed files with 1 additions and 1 deletions
|
@ -357,7 +357,7 @@ public class BuildEntryStorage extends AbstractEntryStorage {
|
|||
if(paths != null && paths.length != 0){
|
||||
ICLanguageSettingEntry entries[] = new ICLanguageSettingEntry[paths.length];
|
||||
for(int i = 0; i < paths.length; i++){
|
||||
entries[i] = (ICLanguageSettingEntry)CDataUtil.createEntry(kind, paths.toString(), null, null, flags);
|
||||
entries[i] = (ICLanguageSettingEntry)CDataUtil.createEntry(kind, paths[i].toString(), null, null, flags);
|
||||
}
|
||||
|
||||
return entries;
|
||||
|
|
Loading…
Add table
Reference in a new issue