Skip to content

Commit 1bddeca

Browse files
committed
Format code
1 parent b91e6df commit 1bddeca

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

gitlab4j-api/src/main/java/org/gitlab4j/api/JobApi.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -300,11 +300,10 @@ public Stream<Job> getJobsStream(Object projectIdOrPath, long pipelineId, Boolea
300300
* @throws GitLabApiException if any exception occurs during execution
301301
*/
302302
public Job getJob() throws GitLabApiException {
303-
Response response =
304-
get(Response.Status.OK, null, "job");
303+
Response response = get(Response.Status.OK, null, "job");
305304
return (response.readEntity(Job.class));
306305
}
307-
306+
308307
/**
309308
* Get single job in a project.
310309
*

0 commit comments

Comments
 (0)