Skip to content

Commit

Permalink
Revert changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrougham committed Nov 1, 2021
1 parent e69cce7 commit 3ca5c58
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
7 changes: 1 addition & 6 deletions .idea/copyright/ALS2.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,6 @@ public class GithubNotificationAgent extends AbstractEventNotificationAgent {
private final RetrySupport retrySupport = new RetrySupport();
private static final int MAX_RETRY = 5;
private static final long RETRY_BACKOFF = 1000;
private final boolean hasApplicationNameInContext;

@Autowired
public GithubNotificationAgent(@Value("${github-status.hasApplicationNameInContext:false}")
boolean hasApplicationNameInContext) {
this.hasApplicationNameInContext = hasApplicationNameInContext;
}

@Override
public void sendNotifications(
Expand Down Expand Up @@ -186,4 +179,7 @@ public void setToken(String token) {

@Value("${github-status.token}")
private String token;

@Value("${github-status.hasApplicationNameInContext}")
private boolean hasApplicationNameInContext;
}

0 comments on commit 3ca5c58

Please sign in to comment.