Skip to content

Commit

Permalink
spotbugs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
arulrajnet committed Apr 4, 2022
1 parent af6a3b3 commit 43dadf5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ static RepositorySpecificResolver fileRepositoryResolverForProject(File projectD
* @param baseConfig the user and system level git config.
* @return the builder.
*/
static RepositorySpecificResolver fileRepositoryResolverForProject(File projectDir, Config baseConfig) {
static RepositorySpecificResolver fileRepositoryResolverForProject(File projectDir, @Nullable Config baseConfig) {
RepositorySpecificResolver repositoryResolver = new RepositorySpecificResolver(baseConfig);
repositoryResolver.findGitDir(projectDir);
repositoryResolver.readEnvironment();
Expand Down Expand Up @@ -113,7 +113,7 @@ public RepositorySpecificResolver() {
this(null);
}

public RepositorySpecificResolver(Config baseConfig) {
public RepositorySpecificResolver(@Nullable Config baseConfig) {
this.baseConfig = baseConfig;
}

Expand Down

0 comments on commit 43dadf5

Please sign in to comment.