1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

bug 319769: Unnecessary type casts

This commit is contained in:
Andrew Gvozdev 2010-07-14 19:21:56 +00:00
parent be965d0528
commit 9f150b102a

View file

@ -311,7 +311,7 @@ public class PerFileSettingsCalculator {
}
public String[] getExtensions(){
return (String[])fExts.clone();
return fExts.clone();
}
@Override