Fix findbugs issue

This commit is contained in:
mchr3k 2011-07-26 23:41:46 +01:00
parent 1dd81cec25
commit 298aef3a4e
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -305,7 +305,7 @@ public class TraceHandler implements IInstrumentationHandler
if (argTrace)
{
String objStr;
if (objArg.getClass().isArray())
if ((objArg != null) && objArg.getClass().isArray())
{
// Array return values pass through this arm so we must do something
// a bit special - use Arrays.deepToString and discard the surrounding