public List getReports()

in src/main/java/org/apache/maven/reporting/exec/ReportSet.java [54:60]


    public List<String> getReports() {
        if (this.reports == null) {
            this.reports = new ArrayList<>();
        }

        return this.reports;
    }