Make 'JGitEnvironmentRepository.JGitFactory' public (#1188)

This commit is contained in:
juneycha
2018-11-15 09:56:27 +09:00
committed by Ryan Baxter
parent cabc55469b
commit f0ea304a87

View File

@@ -686,7 +686,7 @@ public class JGitEnvironmentRepository extends AbstractScmEnvironmentRepository
* Wraps the static method calls to {@link org.eclipse.jgit.api.Git} and
* {@link org.eclipse.jgit.api.CloneCommand} allowing for easier unit testing.
*/
static class JGitFactory {
public static class JGitFactory {
public Git getGitByOpen(File file) throws IOException {
Git git = Git.open(file);