Remove unnecessary API module dependencies (#2842)
Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>
This commit is contained in:
@@ -71,7 +71,9 @@ public class EntityNotFoundException extends AbstractServerRtException {
|
||||
.filter(id -> !found.contains(id))
|
||||
.map(String::valueOf)
|
||||
.collect(Collectors.joining(",")))),
|
||||
Map.of(TYPE, type.getSimpleName(), ENTITY_ID, expected.stream().filter(id -> !found.contains(id)).map(String::valueOf)));
|
||||
Map.of(
|
||||
TYPE, type.getSimpleName(),
|
||||
ENTITY_ID, expected.stream().filter(id -> !found.contains(id)).map(String::valueOf).toList()));
|
||||
}
|
||||
|
||||
private static String toEntityString(final Object obj) {
|
||||
|
||||
Reference in New Issue
Block a user