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:
parent
de0b85c913
commit
d8bdb2c2b3
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue