Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
jmini committed Nov 28, 2024
1 parent 632279d commit bb5b149
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/main/java/org/gitlab4j/api/EpicsApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -332,8 +332,7 @@ public Epic createEpic(
.withParam("start_date", startDate)
.withParam("end_date", endDate)
.withParam("created_at", createdAt);
Response response =
post(Response.Status.CREATED, formData, "groups", getGroupIdOrPath(groupIdOrPath), "epics");
Response response = post(Response.Status.CREATED, formData, "groups", getGroupIdOrPath(groupIdOrPath), "epics");
return (response.readEntity(Epic.class));
}

Expand Down Expand Up @@ -363,8 +362,7 @@ public Epic createEpic(Object groupIdOrPath, Epic epic) throws GitLabApiExceptio
.withParam("start_date", epic.getStartDate())
.withParam("end_date", epic.getEndDate())
.withParam("created_at", epic.getCreatedAt());
Response response =
post(Response.Status.CREATED, formData, "groups", getGroupIdOrPath(groupIdOrPath), "epics");
Response response = post(Response.Status.CREATED, formData, "groups", getGroupIdOrPath(groupIdOrPath), "epics");
return (response.readEntity(Epic.class));
}

Expand Down

0 comments on commit bb5b149

Please sign in to comment.