Skip to content
Snippets Groups Projects
Commit 570b1c0a authored by Simon Barner's avatar Simon Barner
Browse files

- Remove spurious "." in error message

parent f995c382
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ import org.fortiss.tooling.base.ui.annotation.view.generic.filter.AnnotationFilt
* @author eder, diewald, barner
* @author $Author$
* @version $Rev$
* @ConQAT.Rating YELLOW Hash: 3BB250F36B0817B8E685D7CA05B55F7A
* @ConQAT.Rating YELLOW Hash: BF52B9E58D2D44E769E05ADCC62499CD
*/
public class GenericAnnotationView extends AnnotationViewPartBase {
/** Root composite of {@link GenericAnnotationView}. */
......@@ -372,7 +372,7 @@ public class GenericAnnotationView extends AnnotationViewPartBase {
} catch(Exception e) {
System.out.println("Failed to create table viewer column for annotation class " +
annotationClass.getCanonicalName() +
((e.getMessage() != null) ? ": " + e.getMessage() + "." : "."));
((e.getMessage() != null) ? ": " + e.getMessage() : "."));
}
}
......
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