| 96 | } |
| 97 | |
| 98 | bool VcsLocation::operator==( const KDevelop::VcsLocation& rhs ) |
| 99 | { |
| 100 | return( type() == rhs.type() |
| 101 | && repositoryServer() == rhs.repositoryServer() |
| 102 | && localUrl() == rhs.localUrl() |
| 103 | && repositoryPath() == rhs.repositoryPath() |
| 104 | && repositoryModule() == rhs.repositoryModule() |
| 105 | && repositoryBranch() == rhs.repositoryBranch() |
| 106 | && repositoryTag() == rhs.repositoryTag() |
| 107 | && userData() == rhs.userData() ); |
| 108 | } |
| 109 | |
| 110 | |
| 111 | QString VcsLocation::repositoryModule( ) const |
nothing calls this directly
no test coverage detected