mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
cleanup only: generics
This commit is contained in:
parent
a410cd6913
commit
33d129e24c
1 changed files with 2 additions and 2 deletions
|
@ -30,10 +30,10 @@ public abstract class AbstractEntryStorage {
|
||||||
return fKind;
|
return fKind;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List getEntries(List list){
|
public List<ICLanguageSettingEntry> getEntries(List<ICLanguageSettingEntry> list){
|
||||||
SettingsSet settings = initCache();
|
SettingsSet settings = initCache();
|
||||||
if(list == null)
|
if(list == null)
|
||||||
list = new ArrayList();
|
list = new ArrayList<ICLanguageSettingEntry>();
|
||||||
|
|
||||||
ICLanguageSettingEntry entries[] = settings.getEntries();
|
ICLanguageSettingEntry entries[] = settings.getEntries();
|
||||||
list.addAll(Arrays.asList(entries));
|
list.addAll(Arrays.asList(entries));
|
||||||
|
|
Loading…
Add table
Reference in a new issue