Added more checks around parsed versions, added better exception descriptions

This commit is contained in:
Marcin Grzejszczak
2019-01-23 15:03:33 +01:00
parent f4a2ff11a9
commit edd12d85e5
3 changed files with 41 additions and 10 deletions

View File

@@ -91,7 +91,7 @@ class Table {
Exception exception;
Table(String projectName, TaskAndException tae) {
this.projectName = projectName;
this.projectName = StringUtils.hasText(projectName) ? projectName : "Post Release";
this.taskCaption = tae.task.name;
this.taskDescription = tae.task.description;
this.taskState = tae.taskState.name().toLowerCase();