belingueres commented on code in PR #47:
URL:
https://github.com/apache/maven-project-info-reports-plugin/pull/47#discussion_r1199875668
##########
src/main/java/org/apache/maven/report/projectinfo/dependencies/renderer/DependenciesRenderer.java:
##########
@@ -588,14 +596,7 @@ private void renderSectionDependencyFileDetails() {
}
} else {
tableRow(hasSealed, new String[] {
- artifactFile.getName(),
- fileLengthDecimalFormat.format(artifactFile.length()),
- "",
- "",
- "",
- "",
- "",
- ""
+ artifactFile.getName(),
fileLengthDecimalFormat.format(artifactFile.length()), "", "", "", "", ""
Review Comment:
I'll fix it
##########
src/main/java/org/apache/maven/report/projectinfo/dependencies/renderer/DependenciesRenderer.java:
##########
@@ -674,7 +750,7 @@ private void tableRow(boolean fullRow, String[] content) {
private void createExceptionInfoTableRow(Artifact artifact, File
artifactFile, Exception e, boolean hasSealed) {
tableRow(
hasSealed,
- new String[] {artifact.getId(),
artifactFile.getAbsolutePath(), e.getMessage(), "", "", "", "", ""});
+ new String[] {artifact.getId(),
artifactFile.getAbsolutePath(), e.getMessage(), "", "", "", ""});
Review Comment:
I'll fix it
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]