We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12a21a4 commit 61df54dCopy full SHA for 61df54d
src/main/java/org/apache/maven/plugins/checkstyle/AbstractCheckstyleReport.java
@@ -685,8 +685,8 @@ private void initializeXrefTestLocation(CheckstyleReportRenderer renderer) {
685
}
686
687
private String determineRelativePath(File location) {
688
- String relativePath = PathTool.getRelativePath(getReportOutputDirectory().getAbsolutePath(),
689
- location.getAbsolutePath());
+ String relativePath =
+ PathTool.getRelativePath(getReportOutputDirectory().getAbsolutePath(), location.getAbsolutePath());
690
if (relativePath == null || relativePath.trim().isEmpty()) {
691
relativePath = ".";
692
0 commit comments