Skip to content

Commit 930fd0a

Browse files
author
Vladimir Kotal
committed
complete the missing comment
1 parent 556b17c commit 930fd0a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/history/GitRepository.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,8 @@ private org.eclipse.jgit.lib.Repository getJGitRepository(String directory) thro
690690
throw new IOException("cannot get gitDir value from " + dotGitFile);
691691
}
692692

693-
// If the gitDir value is relative path, make it absolute. This is necessary for the
693+
// If the gitDir value is relative path, make it absolute.
694+
// This is necessary for the JGit Repository construction.
694695
File gitDirFile = new File(gitDirValue);
695696
if (!gitDirFile.isAbsolute()) {
696697
gitDirFile = new File(directory, gitDirValue);

0 commit comments

Comments
 (0)