Skip to content
Snippets Groups Projects
Commit d6e91a06 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

Merge branch '426-warnings-log-missing-annotations-badly-concatenated' into 'master'

Resolve "Warnings log: missing annotations badly concatenated"

Closes #426

See merge request piotr.gawron/minerva!321
parents fb2f7a62 914e2c90
No related branches found
No related tags found
1 merge request!321Resolve "Warnings log: missing annotations badly concatenated"
Pipeline #
......@@ -51,7 +51,7 @@ public class MissingRequiredAnnotations implements ProblematicAnnotation {
StringBuilder result = new StringBuilder(new ElementUtils().getElementTag(bioEntity));
result.append("misses one of the following annotations: ");
for (MiriamType type : requiredMiriamType) {
result.append(type.getCommonName());
result.append(type.getCommonName() + ", ");
}
return result.toString();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment