From 4599eb51d8672245f1065b2df85481ed40fc0da0 Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期五, 12 四月 2024 22:12:07 +0800
Subject: [PATCH] 修改lambda错误,删除无用注释
---
smart-man-boot/src/main/java/com/qianwen/smartman/modules/system/vo/ChartGanttStatusDataVO.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/smart-man-boot/src/main/java/com/qianwen/smartman/modules/system/vo/ChartGanttStatusDataVO.java b/smart-man-boot/src/main/java/com/qianwen/smartman/modules/system/vo/ChartGanttStatusDataVO.java
index fb25be9..bf4c9ca 100644
--- a/smart-man-boot/src/main/java/com/qianwen/smartman/modules/system/vo/ChartGanttStatusDataVO.java
+++ b/smart-man-boot/src/main/java/com/qianwen/smartman/modules/system/vo/ChartGanttStatusDataVO.java
@@ -58,13 +58,13 @@
}
public ChartGanttStatusDataVO(final List<ColorStatus> colorStatusInfo, final List<SeriesItem<GanttStatusVO>> series) {
- this.colorStatusInfo = new ArrayList();
+ this.colorStatusInfo = new ArrayList<>();
this.colorStatusInfo = colorStatusInfo;
this.series = series;
}
public ChartGanttStatusDataVO() {
- this.colorStatusInfo = new ArrayList();
+ this.colorStatusInfo = new ArrayList<>();
}
public List<ColorStatus> getColorStatusInfo() {
--
Gitblit v1.9.3