Re: [JGIT PATCH v3 20/23] Added the class NoGitRepositoryFoundException.
From: Robin Rosenberg <hidden> Date: 2016-06-15 22:44:41
fredagen den 23 maj 2008 22.34.29 skrev Florian Koeberle:
+ public NoGitRepositoryFoundException(final File fileWeSearchedRepositoryFor) {
+ super(String.format("No repository found for file '%s'",
+ fileWeSearchedRepositoryFor));
This is any odd patterrn. Usually we use + to concatenate strimgs.
-- robin