diff --git a/src/imageformats/psd.cpp b/src/imageformats/psd.cpp index b8ed1c1..814b9fd 100644 --- a/src/imageformats/psd.cpp +++ b/src/imageformats/psd.cpp @@ -1199,16 +1199,12 @@ bool PSDHandler::read(QImage *image) return false; } - auto t = QTime::currentTime(); - QImage img; if (!LoadPSD(s, header, img)) { // qDebug() << "Error loading PSD file."; return false; } - qDebug() << t.msecsTo(QTime::currentTime()); - *image = img; return true; }