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

annotation types separated by collon

parent fb2f7a62
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