mirror of
https://github.com/google/nomulus
synced 2026-08-20 22:26:12 +00:00
Refactor Guava functional methods to use lambdas
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=177027488
This commit is contained in:
@@ -196,7 +196,7 @@ public class IcannReportingStager {
|
||||
private String constructTotalRow(List<Integer> totals) {
|
||||
StringBuilder rowString = new StringBuilder("Totals,,");
|
||||
rowString.append(
|
||||
totals.stream().map((Integer i) -> i.toString()).collect(Collectors.joining(",")));
|
||||
totals.stream().map(Object::toString).collect(Collectors.joining(",")));
|
||||
return rowString.toString();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user