This commit is contained in:
parent
37c2990bba
commit
6862104e24
1 changed files with 4 additions and 10 deletions
|
@ -360,12 +360,9 @@ are well formed.
|
||||||
Field field = fields.get(fieldName);
|
Field field = fields.get(fieldName);
|
||||||
|
|
||||||
List<String> copyOfN3 = new ArrayList<String>();
|
List<String> copyOfN3 = new ArrayList<String>();
|
||||||
List<String> assertions = field.getAssertions();
|
|
||||||
if (assertions != null) {
|
|
||||||
for( String str : field.getAssertions()){
|
for( String str : field.getAssertions()){
|
||||||
copyOfN3.add(str);
|
copyOfN3.add(str);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
out.put( fieldName, copyOfN3 );
|
out.put( fieldName, copyOfN3 );
|
||||||
}
|
}
|
||||||
return out;
|
return out;
|
||||||
|
@ -377,12 +374,9 @@ are well formed.
|
||||||
Field field = fields.get(fieldName);
|
Field field = fields.get(fieldName);
|
||||||
|
|
||||||
List<String> copyOfN3 = new ArrayList<String>();
|
List<String> copyOfN3 = new ArrayList<String>();
|
||||||
List<String> retractions = field.getRetractions();
|
|
||||||
if (retractions != null) {
|
|
||||||
for( String str : field.getRetractions()){
|
for( String str : field.getRetractions()){
|
||||||
copyOfN3.add(str);
|
copyOfN3.add(str);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
out.put( fieldName, copyOfN3 );
|
out.put( fieldName, copyOfN3 );
|
||||||
}
|
}
|
||||||
return out;
|
return out;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue