Skip to content

Commit

Permalink
Implement new abstract method in SystemReader
Browse files Browse the repository at this point in the history
A new abstract method was introduced in JGit 5.5.2 to SystemReader,
which now needs to be implemeneted by Grgit's GrgitSystemReader.

This fixes #309.
  • Loading branch information
ajoberstar committed Dec 23, 2019
1 parent 0cccb88 commit 11a2677
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ public String getProperty(String key) {
return delegate.getProperty(key);
}

@Override
public FileBasedConfig openJGitConfig(Config parent, FS fs) {
return delegate.openJGitConfig(parent, fs);
}

@Override
public FileBasedConfig openUserConfig(Config parent, FS fs) {
return delegate.openUserConfig(parent, fs);
Expand Down

0 comments on commit 11a2677

Please sign in to comment.