Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions core/src/main/java/org/verapdf/report/HTMLReport.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public final class HTMLReport {
private static final String xslExt = ".xsl"; //$NON-NLS-1$
private static final String detailedReport = resourceRoot + "DetailedHtmlReport" + xslExt; //$NON-NLS-1$
private static final String summaryReport = resourceRoot + "SummaryHtmlReport" + xslExt; //$NON-NLS-1$
private static final String GUI = "gui"; //$NON-NLS-1$
private static final String APPS = "apps"; //$NON-NLS-1$
private static final String VERAPDF_REST = "verapdf-rest"; //$NON-NLS-1$

private HTMLReport() {
Expand Down Expand Up @@ -102,7 +102,7 @@ private static String getAppName() {
return VERAPDF_REST;
}
}
return GUI;
return APPS;
}

}
Loading