mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Cleanup: unnecessary cast
This commit is contained in:
parent
aead80d4fe
commit
e9bc7216e5
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ public class CFolderDescriptionCache extends CDefaultFolderData implements
|
|||
}
|
||||
|
||||
public ICLanguageSetting[] getLanguageSettings() {
|
||||
return (CLanguageSettingCache[])fLanguageDatas.toArray(new CLanguageSettingCache[fLanguageDatas.size()]);
|
||||
return fLanguageDatas.toArray(new CLanguageSettingCache[fLanguageDatas.size()]);
|
||||
}
|
||||
|
||||
public ICResourceDescription getNestedResourceDescription(IPath relPath, boolean exactPath) {
|
||||
|
|
Loading…
Add table
Reference in a new issue