Hi, > + this.indexSortFields = Arrays.stream(sort.getSort()).map((s) -> > s.getField()).collect(Collectors.toSet());
I'd use method references instead of Lambdas: Instead of: map((s) -> s.getField()) Use: map(s::getField) This spares a synthetic lambda$xxx method that clutters stack trace and is more readable. Uwe --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
