| 8 | using namespace QLogger; |
| 9 | |
| 10 | bool GitUserInfo::isValid() const |
| 11 | { |
| 12 | return !mUserEmail.isNull() && !mUserEmail.isEmpty() && !mUserName.isNull() && !mUserName.isEmpty(); |
| 13 | } |
| 14 | |
| 15 | GitConfig::GitConfig(QSharedPointer<GitBase> gitBase, QObject *parent) |
| 16 | : QObject(parent) |
no test coverage detected