Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixing return type not set
  • Loading branch information
Petr Svoboda committed Sep 4, 2019
commit c4225fce983b317a01ada56e951f49ebe91edd5f
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public List<GitLabBranchBuild> getBuilds() {
}

@DataBoundSetter
public setState(String state){
public String setState(String state){
this.state = StringUtils.isEmpty(state) ? null : state;
}

Expand Down