The original code:
if (log == null || logCollectClient == null){
...........
}
The improved scheme:
if (Objects.isNull(log) || Objects.isNull(logCollectClient)){
.............
}
- Modify a logic that determines whether a parameter is null 1920731406
