Skip to content

Commit

Permalink
Remove debug crumbs
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Nov 1, 2024
1 parent 7a0f33f commit ba1048a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/core/qgismobileapp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,6 @@ void QgisMobileapp::readProjectFile()
// get list of files inside zip file
QString tmpPath;
char **papszSiblingFiles = VSIReadDirRecursive( QStringLiteral( "/vsi%1/%2" ).arg( suffix, mProjectFilePath ).toLocal8Bit().constData() );
qDebug() << QStringLiteral( "/vsi%1/%2" ).arg( suffix, mProjectFilePath );
if ( papszSiblingFiles )
{
for ( int i = 0; papszSiblingFiles[i]; i++ )
Expand All @@ -855,7 +854,6 @@ void QgisMobileapp::readProjectFile()
// skip directories (files ending with /)
if ( tmpPath.right( 1 ) != QLatin1String( "/" ) )
{
qDebug() << tmpPath;
const QFileInfo tmpFi( tmpPath );
if ( SUPPORTED_VECTOR_EXTENSIONS.contains( tmpFi.suffix().toLower() ) || SUPPORTED_RASTER_EXTENSIONS.contains( tmpFi.suffix().toLower() ) )
files << QStringLiteral( "/vsi%1/%2/%3" ).arg( suffix, mProjectFilePath, tmpPath );
Expand Down

1 comment on commit ba1048a

@qfield-fairy
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.