1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Fail silently on OOM.

This commit is contained in:
Ken Ryall 2008-07-09 21:17:11 +00:00
parent af2dd181dd
commit 2d3a12da43

View file

@ -80,7 +80,7 @@ public class DwarfReader extends Dwarf implements ISymbolReader {
try {
dwarfSections.put(element, section.loadSectionData());
} catch (OutOfMemoryError e) {
CCorePlugin.log(e);
// Don't log this error, handle it silently without any UI.
}
}
}