Skip to content

Commit

Permalink
Fix after applying suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
poljudov committed May 31, 2020
1 parent ae46cd6 commit 9ee6a91
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void postProcessEnvironment(ConfigurableEnvironment environment, SpringAp
}

FileSystemResource resource = new FileSystemResource(choicesPath);
if (!resource.isFile() || !resource.isReadable() || !extensionIsCorrect(resource.getFilename())) {
if (!resource.isFile() || !resource.isReadable() || !isExtensionCorrect(resource.getFilename())) {
return;
}

Expand Down

0 comments on commit 9ee6a91

Please sign in to comment.