fix possible NPE
This commit is contained in:
parent
ed77b95632
commit
6008f8bb79
|
@ -214,8 +214,10 @@ public class SigarInvoker {
|
||||||
typeGetter,
|
typeGetter,
|
||||||
args);
|
args);
|
||||||
} catch (Throwable t) {
|
} catch (Throwable t) {
|
||||||
|
String parms =
|
||||||
|
(args == null) ? "" : Arrays.asList(args).toString();
|
||||||
String msg = "Failed to invoke " +
|
String msg = "Failed to invoke " +
|
||||||
typeGetter.getName() + Arrays.asList(args) +
|
typeGetter.getName() + parms +
|
||||||
": " + t.getMessage();
|
": " + t.getMessage();
|
||||||
throw new SigarException(msg);
|
throw new SigarException(msg);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue