Skip to content

Commit 5c10f51

Browse files
committed
Format code
1 parent f740f2f commit 5c10f51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public List<WikiPage> getPages(Object projectIdOrPath, Boolean withContent) thro
136136
public Pager<WikiPage> getPages(Object projectIdOrPath, Boolean withContent, int itemsPerPage)
137137
throws GitLabApiException {
138138
GitLabApiForm formData = new GitLabApiForm();
139-
if(withContent != null) {
139+
if (withContent != null) {
140140
formData.withParam("with_content", (withContent.booleanValue() ? 1 : 0));
141141
}
142142
return (new Pager<WikiPage>(

0 commit comments

Comments
 (0)