Skip to content

Commit

Permalink
Restore compatibility for getBotUser() (#449)
Browse files Browse the repository at this point in the history
  • Loading branch information
timja authored Dec 18, 2018
1 parent a514a6d commit cc7715e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/jenkins/plugins/slack/SlackNotifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,11 @@ public boolean isBotUser() {
return botUser;
}

@Deprecated
public boolean getBotUser() {
return botUser;
}

@DataBoundSetter
public void setBotUser(boolean botUser) {
this.botUser = botUser;
Expand Down

0 comments on commit cc7715e

Please sign in to comment.