Fix indentation

This commit is contained in:
Nyall Dawson 2017-02-06 09:28:15 +10:00
parent 48e5c09b89
commit a80cca0fb3

View File

@ -4093,7 +4093,7 @@ static QVariant parseArray( const QString& txt, QVariant::Type type, QVariant::T
{
if ( !txt.startsWith( '{' ) || !txt.endsWith( '}' ) )
{
if( !txt.isEmpty() )
if ( !txt.isEmpty() )
QgsLogger::warning( "Error parsing array, missing curly braces: " + txt );
return QVariant( type );
}