diff options
Diffstat (limited to 'src/plugins/git/commitdata.cpp')
-rw-r--r-- | src/plugins/git/commitdata.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/plugins/git/commitdata.cpp b/src/plugins/git/commitdata.cpp index 463b98bdd1..8cb0cbee68 100644 --- a/src/plugins/git/commitdata.cpp +++ b/src/plugins/git/commitdata.cpp @@ -28,7 +28,6 @@ #include <utils/qtcassert.h> #include <QCoreApplication> -#include <QDebug> namespace Git { namespace Internal { @@ -39,12 +38,6 @@ void GitSubmitEditorPanelInfo::clear() branch.clear(); } -QDebug operator<<(QDebug d, const GitSubmitEditorPanelInfo &data) -{ - d.nospace() << "Rep: " << data.repository << " branch: " << data.branch; - return d; -} - void GitSubmitEditorPanelData::clear() { author.clear(); @@ -67,14 +60,6 @@ QString GitSubmitEditorPanelData::authorString() const return rc; } -QDebug operator<<(QDebug d, const GitSubmitEditorPanelData &data) -{ - d.nospace() << " author:" << data.author << " email: " << data.email - << " bypass hooks: " << data.bypassHooks - << " action after commit " << data.pushAction; - return d; -} - CommitData::CommitData(CommitType type) : commitType(type) , commitEncoding(0) |