forked from D-Net/dnet-hadoop
code formatting after mvn compile
This commit is contained in:
parent
412d2cb16a
commit
f19b04d41b
|
@ -51,8 +51,11 @@ public class MigrateDbEntitiesApplicationTest {
|
||||||
public void setUp() {
|
public void setUp() {
|
||||||
lenient()
|
lenient()
|
||||||
.when(vocs.getTermAsQualifier(anyString(), anyString()))
|
.when(vocs.getTermAsQualifier(anyString(), anyString()))
|
||||||
.thenAnswer(invocation -> OafMapperUtils
|
.thenAnswer(
|
||||||
.qualifier(invocation.getArgument(1), invocation.getArgument(1), invocation.getArgument(0), invocation.getArgument(0)));
|
invocation -> OafMapperUtils
|
||||||
|
.qualifier(
|
||||||
|
invocation.getArgument(1), invocation.getArgument(1), invocation.getArgument(0),
|
||||||
|
invocation.getArgument(0)));
|
||||||
|
|
||||||
lenient().when(vocs.termExists(anyString(), anyString())).thenReturn(true);
|
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 {
|
private List<TypedField> prepareMocks(final String jsonFile) throws IOException, SQLException {
|
||||||
final String json = IOUtils.toString(getClass().getResourceAsStream(jsonFile));
|
final String json = IOUtils.toString(getClass().getResourceAsStream(jsonFile));
|
||||||
final ObjectMapper mapper = new ObjectMapper();
|
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) {
|
for (final TypedField tf : list) {
|
||||||
if (tf.getValue() == null) {
|
if (tf.getValue() == null) {
|
||||||
|
|
Loading…
Reference in New Issue