1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 206941 - Set the default extension filter to '*' for core files instead of '*.*', which doesn't match the default Linux core filename of 'core'.

This commit is contained in:
Doug Schaefer 2007-10-19 18:57:21 +00:00
parent de0b85c913
commit d8bdb2c2b3

View file

@ -160,7 +160,7 @@ public class DebugConfiguration implements ICDebugConfiguration {
exts.add(ext);
}
}
exts.add("*.*"); //$NON-NLS-1$
exts.add("*"); //$NON-NLS-1$
fCoreExt = (String[])exts.toArray(new String[exts.size()]);
}
return fCoreExt;