mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
[cleanup] erefactor/EclipseJdt - Use diamond operator
EclipseJdt cleanup 'UseDiamondOperator' applied by erefactor. For EclipseJdt see https://www.eclipse.org/eclipse/news/4.18/jdt.php For erefactor see https://github.com/cal101/erefactor
This commit is contained in:
@@ -14,7 +14,7 @@ public class CaseReport {
|
||||
/**
|
||||
* 包含的测试步骤报告
|
||||
*/
|
||||
private List<StepReport> stepReports = new ArrayList<StepReport>();
|
||||
private List<StepReport> stepReports = new ArrayList<>();
|
||||
|
||||
public List<StepReport> getStepReports() {
|
||||
return stepReports;
|
||||
|
@@ -14,7 +14,7 @@ public class SuiteReport {
|
||||
/**
|
||||
* 包含的用例测试报告
|
||||
*/
|
||||
private List<CaseReport> caseReports = new ArrayList<CaseReport>();
|
||||
private List<CaseReport> caseReports = new ArrayList<>();
|
||||
|
||||
public List<CaseReport> getCaseReports() {
|
||||
return caseReports;
|
||||
|
Reference in New Issue
Block a user