File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
report/src/main/java/org/hjug/refactorfirst/report Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 5757
5858 <!-- Compiler plugins-->
5959 <!-- <errorprone.version>2.22.0</errorprone.version>-->
60- <lombok .version>1.18.30 </lombok .version>
60+ <lombok .version>1.18.36 </lombok .version>
6161 <sonar .projectKey>jimbethancourt_RefactorFirst</sonar .projectKey>
6262 <sonar .moduleKey>${project.artifactId} </sonar .moduleKey>
6363 <sonar .organization>jimbethancourt-github</sonar .organization>
Original file line number Diff line number Diff line change @@ -322,10 +322,7 @@ private String renderCycles(List<RankedCycle> rankedCycles) {
322322
323323 stringBuilder .append ("<br/>\n " );
324324
325- rankedCycles .stream ()
326- .limit (10 )
327- .map (this ::renderSingleCycle )
328- .forEach (stringBuilder ::append );
325+ rankedCycles .stream ().limit (10 ).map (this ::renderSingleCycle ).forEach (stringBuilder ::append );
329326
330327 return stringBuilder .toString ();
331328 }
You can’t perform that action at this time.
0 commit comments