1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

[299323] Scrolling through invalid memory grows the Eclipse error log

This commit is contained in:
John Cortell 2010-01-11 22:46:57 +00:00
parent 01e44176ed
commit c341b5b329

View file

@ -1004,9 +1004,12 @@ public class Rendering extends Composite implements IDebugEventSetListener
}
catch(Exception e)
{
logError(
TraditionalRenderingMessages
.getString("TraditionalRendering.FAILURE_READ_MEMORY"), e); //$NON-NLS-1$
// User can scroll to any memory, whether it's valid on the
// target or not. Doesn't make much sense to fill up the Eclipse
// error log with such "failures".
// logError(
// TraditionalRenderingMessages
// .getString("TraditionalRendering.FAILURE_READ_MEMORY"), e); //$NON-NLS-1$
}
}