报告链接方法或属性调用过程中可能产生的
NullPointerException
。
示例:
domain?.getZone().getName()
在应用快速修复后:
domain?.getZone()?.getName()