We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0ca714 commit 96fec2cCopy full SHA for 96fec2c
src/main/java/org/utplsql/cli/ReportersCommand.java
@@ -61,15 +61,7 @@ public String getCommand(){
61
return"reporters";
62
}
63
64
-privateintgetMaxNameLength(List<ReporterInfo> reporterInfos){
65
-returnreporterInfos.stream()
66
- .mapToInt(info -> info.getName().length())
67
- .max()
68
- .orElse(0);
69
- }
70
-
71
privatevoidwriteReporters(List<ReporterInfo> reporterInfos, PrintStreamout){
72
-//int padding = getMaxNameLength(reporterInfos)+1;
73
reporterInfos.stream()
74
.sorted(Comparator.comparing(ReporterInfo::getName))
75
.forEach(info -> writeReporter(info, 4, out));
0 commit comments