| 1947 | } |
| 1948 | |
| 1949 | std::string GitPlugin::repoPath( const std::string& repoName ) { |
| 1950 | Lock l( mRepoMutex ); |
| 1951 | for ( const auto& repo : mRepos ) |
| 1952 | if ( repo.second == repoName ) |
| 1953 | return repo.first; |
| 1954 | return ""; |
| 1955 | } |
| 1956 | |
| 1957 | } // namespace ecode |
no outgoing calls
no test coverage detected