1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00
This commit is contained in:
Warren Paul 2008-10-01 20:46:28 +00:00
parent 87b4f009d3
commit cca64fca6c

View file

@ -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;
}
}