File tree 2 files changed +1
-16
lines changed
src/main/java/org/apache/maven/report/projectinfo
2 files changed +1
-16
lines changed Original file line number Diff line number Diff line change @@ -187,21 +187,6 @@ protected boolean isEmpty(Collection<?> coll) {
187
187
return coll == null || coll .isEmpty ();
188
188
}
189
189
190
- @ Override
191
- protected String getOutputDirectory () {
192
- return outputDirectory .getAbsolutePath ();
193
- }
194
-
195
- @ Override
196
- public File getReportOutputDirectory () {
197
- return outputDirectory ;
198
- }
199
-
200
- @ Override
201
- public void setReportOutputDirectory (File reportOutputDirectory ) {
202
- this .outputDirectory = reportOutputDirectory ;
203
- }
204
-
205
190
@ Override
206
191
protected MavenProject getProject () {
207
192
return project ;
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ public boolean canGenerateReport() {
124
124
@ Override
125
125
public void executeReport (Locale locale ) {
126
126
try {
127
- copyResources (new File ( getOutputDirectory () ));
127
+ copyResources (getReportOutputDirectory ( ));
128
128
} catch (IOException e ) {
129
129
getLog ().error ("Cannot copy resources" , e );
130
130
}
You can’t perform that action at this time.
0 commit comments