mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-11-30 03:08:01 +08:00
[checkstyle] optimize java code checkstyle for EmptyStatement rule (#1373)
This commit is contained in:
parent
da88597717
commit
2dc5a732eb
@ -55,7 +55,7 @@ public class GanttDto {
|
||||
this();
|
||||
this.height = height;
|
||||
this.tasks = tasks;
|
||||
this.taskNames = taskNames;;
|
||||
this.taskNames = taskNames;
|
||||
}
|
||||
public GanttDto(int height, List<Task> tasks, List<String> taskNames, Map<String, String> taskStatus) {
|
||||
this.height = height;
|
||||
|
@ -229,7 +229,9 @@
|
||||
<property name="illegalClasses" value="java.util.Optional, com.google.common.base.Optional"/>
|
||||
</module>
|
||||
|
||||
<module name="EmptyStatement"/>
|
||||
<module name="EmptyStatement">
|
||||
<property name="severity" value="error"/>
|
||||
</module>
|
||||
|
||||
<module name="JavadocStyle"/>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user