[Server] Replace list.size() > 0 by !list.isEmpty()

This commit is contained in:
rldhont 2017-06-05 20:02:49 +02:00
parent 4ab6a06527
commit ad14373aa6

View File

@ -85,7 +85,7 @@ namespace QgsWfs
fids.insert( fid.toInt() );
}
if ( fids.size() > 0 )
if ( !fids.isEmpty() )
{
request.setFilterFids( fids );
}