Scheduled maintenance on Saturday, 27 September 2025, from 07:00 AM to 4:00 PM GMT (09:00 AM to 6:00 PM CEST) - some services may be unavailable -

Skip to content
Snippets Groups Projects
Commit b6e8bc96 authored by Fotis Soldatos's avatar Fotis Soldatos
Browse files

refactor(policy): add toString() to common package

parent e8571ade
No related branches found
No related tags found
1 merge request!54Release 2.0.0
package eu.teraflow.policy.common;
import java.util.List;
import java.util.stream.Collectors;
public class Util {
private Util() {}
public static <T> String toString(List<T> list) {
return list.stream().map(T::toString).collect(Collectors.joining(", "));
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment