Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Magloire2002-09-16 22:22:18 +0000
committerAlain Magloire2002-09-16 22:22:18 +0000
commit2ffa2611d29897b16423d2783699f856efd6ccd1 (patch)
treee0be8b964944e1cfdadb01404b307d914416d53d
parent98cf33a2f41ad3b7c49d246f0ca0feab1048c083 (diff)
downloadorg.eclipse.cdt-2ffa2611d29897b16423d2783699f856efd6ccd1.tar.gz
org.eclipse.cdt-2ffa2611d29897b16423d2783699f856efd6ccd1.tar.xz
org.eclipse.cdt-2ffa2611d29897b16423d2783699f856efd6ccd1.zip
catch CDIException if getRegisters() failed.
-rw-r--r--debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/model/CRegisterGroup.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/model/CRegisterGroup.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/model/CRegisterGroup.java
index bea7c32b6ff..e33b4de137f 100644
--- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/model/CRegisterGroup.java
+++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/model/CRegisterGroup.java
@@ -113,18 +113,14 @@ public class CRegisterGroup extends CDebugElement implements IRegisterGroup
CStackFrame currentFrame = getCurrentStackFrame();
if ( currentFrame != null )
{
- /*
try
{
- */
result = getCurrentStackFrame().getCDIStackFrame().getRegisters( fRegisterObjects );
- /*
}
catch( CDIException e )
{
targetRequestFailed( e.getMessage(), null );
}
- */
}
return result;
}

Back to the top