Skip to content

Commit

Permalink
Simplify ctor call
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed May 29, 2023
1 parent 2a0e80d commit 257a7cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class SurefireReportMojo extends AbstractSurefireReportMojo {
@Override
protected File getSurefireReportsDirectory(MavenProject subProject) {
String buildDir = subProject.getBuild().getDirectory();
return new File(buildDir + "/surefire-reports");
return new File(buildDir, "surefire-reports");
}

@Override
Expand Down

0 comments on commit 257a7cd

Please sign in to comment.