Skip to content

Commit 61df54d

Browse files
committed
Fix spotless
1 parent 12a21a4 commit 61df54d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/apache/maven/plugins/checkstyle/AbstractCheckstyleReport.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -685,8 +685,8 @@ private void initializeXrefTestLocation(CheckstyleReportRenderer renderer) {
685685
}
686686

687687
private String determineRelativePath(File location) {
688-
String relativePath = PathTool.getRelativePath(getReportOutputDirectory().getAbsolutePath(),
689-
location.getAbsolutePath());
688+
String relativePath =
689+
PathTool.getRelativePath(getReportOutputDirectory().getAbsolutePath(), location.getAbsolutePath());
690690
if (relativePath == null || relativePath.trim().isEmpty()) {
691691
relativePath = ".";
692692
}

0 commit comments

Comments
 (0)