提交 0164ba43 编写于 作者: D Dan Rice

Avoid an NPE when logging a null request arg

上级 1860dd5d
...@@ -428,7 +428,7 @@ public class RestAdapter { ...@@ -428,7 +428,7 @@ public class RestAdapter {
log.log("---> REQUEST:"); log.log("---> REQUEST:");
} }
for (int i = 0; i < args.length; i++) { for (int i = 0; i < args.length; i++) {
log.log("#" + i + ": " + args[i].toString()); log.log("#" + i + ": " + args[i]);
} }
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册