Skip to content

Commit

Permalink
LPS-105380 Variable should be final
Browse files Browse the repository at this point in the history
  • Loading branch information
hhuijser authored and brianchandotcom committed Feb 3, 2021
1 parent 04ac854 commit 4f5dd4c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -846,7 +846,7 @@ protected void updateGithub() {
private Boolean _autoCloseCommentAvailable;
private String _ciMergeSHA = "";
private String _commonParentSHA;
private List<String> _fileNames = new ArrayList<>();
private final List<String> _fileNames = new ArrayList<>();
private List<GitHubRemoteGitCommit> _gitHubRemoteGitCommits;
private GitHubRemoteGitRepository _gitHubRemoteGitRepository;
private final String _gitHubRemoteGitRepositoryName;
Expand Down

0 comments on commit 4f5dd4c

Please sign in to comment.