mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
fixed bug #211142.
This commit is contained in:
parent
87b4f009d3
commit
cca64fca6c
1 changed files with 2 additions and 1 deletions
|
@ -1582,7 +1582,8 @@ public class CProjectDescriptionManager implements ICProjectDescriptionManager {
|
|||
*/
|
||||
if(exts != null && exts.length != 0){
|
||||
for(int j = 0; j < exts.length; j++){
|
||||
if(ext.equals(exts[j]))
|
||||
// since the file types prefs are not case sensitive, don't be here
|
||||
if(ext.equalsIgnoreCase(exts[j]))
|
||||
return setting;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue