mirror of
https://github.com/continew-org/continew-starter.git
synced 2025-09-14 05:01:39 +08:00
style: 调整代码风格 null != xx => xx != null(更符合大众风格)
This commit is contained in:
@@ -68,7 +68,7 @@ public class ExcelBigNumberConverter implements Converter<Long> {
|
||||
public WriteCellData<Object> convertToExcelData(Long value,
|
||||
ExcelContentProperty contentProperty,
|
||||
GlobalConfiguration globalConfiguration) {
|
||||
if (null != value) {
|
||||
if (value != null) {
|
||||
String str = Long.toString(value);
|
||||
if (str.length() > MAX_LENGTH) {
|
||||
return new WriteCellData<>(str);
|
||||
|
Reference in New Issue
Block a user