mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 22:22:11 +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;
|
||||
}
|
||||
|
||||
public List getEntries(List list){
|
||||
public List<ICLanguageSettingEntry> getEntries(List<ICLanguageSettingEntry> list){
|
||||
SettingsSet settings = initCache();
|
||||
if(list == null)
|
||||
list = new ArrayList();
|
||||
list = new ArrayList<ICLanguageSettingEntry>();
|
||||
|
||||
ICLanguageSettingEntry entries[] = settings.getEntries();
|
||||
list.addAll(Arrays.asList(entries));
|
||||
|
|
Loading…
Add table
Reference in a new issue