code formatting after mvn compile

This commit is contained in:
Alessia Bardi 2021-08-23 14:33:39 +02:00
parent 412d2cb16a
commit f19b04d41b
1 changed files with 85 additions and 81 deletions

View File

@ -51,8 +51,11 @@ public class MigrateDbEntitiesApplicationTest {
public void setUp() {
lenient()
.when(vocs.getTermAsQualifier(anyString(), anyString()))
.thenAnswer(invocation -> OafMapperUtils
.qualifier(invocation.getArgument(1), invocation.getArgument(1), invocation.getArgument(0), invocation.getArgument(0)));
.thenAnswer(
invocation -> OafMapperUtils
.qualifier(
invocation.getArgument(1), invocation.getArgument(1), invocation.getArgument(0),
invocation.getArgument(0)));
lenient().when(vocs.termExists(anyString(), anyString())).thenReturn(true);
@ -235,7 +238,8 @@ public class MigrateDbEntitiesApplicationTest {
private List<TypedField> prepareMocks(final String jsonFile) throws IOException, SQLException {
final String json = IOUtils.toString(getClass().getResourceAsStream(jsonFile));
final ObjectMapper mapper = new ObjectMapper();
final List<TypedField> list = mapper.readValue(json, new TypeReference<List<TypedField>>() {});
final List<TypedField> list = mapper.readValue(json, new TypeReference<List<TypedField>>() {
});
for (final TypedField tf : list) {
if (tf.getValue() == null) {