Skip to content

Commit

Permalink
fix: fix after review comment, remove unnecessary application exit
Browse files Browse the repository at this point in the history
  • Loading branch information
m-rudyk committed Sep 8, 2023
1 parent 7b75226 commit af37c89
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/main/java/com/lpvs/service/LPVSGitHubService.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,6 @@ private void checks() throws Exception {
log.error(GITHUB_AUTH_TOKEN_ENV_VAR_NAME + "(" + GITHUB_AUTH_TOKEN_PROP_NAME + ") is not set.");
exitHandler.exit(-1);
}
if (this.GITHUB_LOGIN.isEmpty()) {
log.error(GITHUB_LOGIN_ENV_VAR_NAME + "(" + GITHUB_LOGIN_PROP_NAME + ") is not set.");
exitHandler.exit(-1);
}
}

private static GitHub gitHub;
Expand Down

0 comments on commit af37c89

Please sign in to comment.