forked from qt-creator/qt-creator
Qnx: Remove unnecessary nullptr check
Change-Id: I164d68814a685060782eacc644dfdc114f60d688 Reviewed-by: Filippo Cucchetto <filippocucchetto@gmail.com> Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
@@ -105,7 +105,7 @@ void Slog2InfoRunner::launchSlog2Info()
|
||||
QTC_CHECK(!m_applicationId.isEmpty());
|
||||
QTC_CHECK(m_found);
|
||||
|
||||
if (m_logProcess && m_logProcess->state() == QProcess::Running)
|
||||
if (m_logProcess->state() == QProcess::Running)
|
||||
return;
|
||||
|
||||
m_launchDateTime = QDateTime::fromString(QString::fromLatin1(m_launchDateTimeProcess->readAllStandardOutput()).trimmed(),
|
||||
|
||||
Reference in New Issue
Block a user