1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 01:36:01 +02:00

Implementation of Registers view.

This commit is contained in:
Mikhail Khodjaiants 2002-09-16 22:14:21 +00:00
parent 397525c637
commit 98cf33a2f4

View file

@ -74,7 +74,7 @@ public class CRegisterGroup extends CDebugElement implements IRegisterGroup
private List getRegisters0() throws DebugException
{
if ( fRegisters == null )
if ( fRegisters == null || fRegisters.size() == 0 )
{
ICDIRegister[] regs = getCDIRegisters();
fRegisters = new ArrayList( regs.length );