Commit 79de46be authored by Juraj Fiala's avatar Juraj Fiala
Browse files

Fix typo

parent b4cc4145
Pipeline #132183 waiting for manual action with stage
......@@ -75,7 +75,7 @@ public class AgentAssignmentServiceImpl implements AgentAssignmentService {
public List<AgentAssignment> getAssignmentsByAgentId(String id) {
var agent = agentDao.findById(id);
if (agent.isEmpty()) {
throw new IllegalArgumentException(String.format("Agent with id %s does not exist.}", id));
throw new IllegalArgumentException(String.format("Agent with id %s does not exist.", id));
}
return agent.get().getAgentAssignments();
}
......
Supports Markdown
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