mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Array out of the bound exception.
This commit is contained in:
parent
e2b72802b2
commit
12d8b6bf82
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ public class DebugTextHover implements ITextHover
|
||||||
ICExpressionEvaluator ee = (ICExpressionEvaluator)targets[i].getAdapter( ICExpressionEvaluator.class );
|
ICExpressionEvaluator ee = (ICExpressionEvaluator)targets[i].getAdapter( ICExpressionEvaluator.class );
|
||||||
if ( ee != null )
|
if ( ee != null )
|
||||||
{
|
{
|
||||||
targetList.add( i, targets[i] );
|
targetList.add(targets[i] );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
StringBuffer buffer = new StringBuffer();
|
StringBuffer buffer = new StringBuffer();
|
||||||
|
|
Loading…
Add table
Reference in a new issue