Skip to content

Commit 2cc500d

Browse files
committedApr 24, 2023
Update src/core/vector/qgsvectordataprovider.cpp
1 parent 3434f43 commit 2cc500d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/vector/qgsvectordataprovider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@ static bool _compareEncodings( const QString &s1, const QString &s2 )
750750

751751
static bool _removeDuplicateEncodings( const QString &s1, const QString &s2 )
752752
{
753-
return ( s1.compare( s2, Qt::CaseInsensitive ) == 0 );
753+
return s1.compare( s2, Qt::CaseInsensitive ) == 0;
754754
}
755755

756756
QStringList QgsVectorDataProvider::availableEncodings()

0 commit comments

Comments
 (0)
Please sign in to comment.