SonarLint
Null pointers should not be dereferenced
A “NullPointerException” could be thrown: "getReauestAttributes0y can return null.r
问题释义: 空指针不应取消引用
修改方法: 增加非空处理 Objects.requireNonNull(xxx)
SonarLint
Null pointers should not be dereferenced
A “NullPointerException” could be thrown: "getReauestAttributes0y can return null.r
问题释义: 空指针不应取消引用
修改方法: 增加非空处理 Objects.requireNonNull(xxx)