Verified Commit ac1082d1 authored by Lukas Wiest's avatar Lukas Wiest 🚂
Browse files

refactor(systems/gitlab): TicketBuilder remove obsolete else

parent baba48d5
Pipeline #1295 skipped
......@@ -74,7 +74,8 @@ public class GitlabTicketBuilder extends TicketBuilder<GitlabTicketBuilder, Gitl
if (this.parent.getConfigTrue(TicketSystem.ConfigurationOptions.RETURN_NULL_ON_ERROR)) return null;
else throw new AssertionException("GitLab Tickets need at-least a title");
}
else body.put("title", this.title);
body.put("title", this.title);
logger.log(Level.FINEST, "title set");
if (this.assignees != null)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment