From 914e2c90fc9757c0bf5c29d02b43bde288cb2242 Mon Sep 17 00:00:00 2001
From: Piotr Gawron <piotr.gawron@uni.lu>
Date: Tue, 19 Jun 2018 10:20:25 +0200
Subject: [PATCH] annotation types separated by collon

---
 .../annotation/services/MissingRequiredAnnotations.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/annotation/src/main/java/lcsb/mapviewer/annotation/services/MissingRequiredAnnotations.java b/annotation/src/main/java/lcsb/mapviewer/annotation/services/MissingRequiredAnnotations.java
index c2ba975f0e..b6a0266de4 100644
--- a/annotation/src/main/java/lcsb/mapviewer/annotation/services/MissingRequiredAnnotations.java
+++ b/annotation/src/main/java/lcsb/mapviewer/annotation/services/MissingRequiredAnnotations.java
@@ -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();
 	}
-- 
GitLab