QNetworkInformation: Remove the default argument

And the code for loading whatever backend is sorted first.
Though, looking at the code it would've never returned 'true' anyway.

Pick-to: 6.1 6.1.0
Change-Id: I7bc2c740e8cb5343e5843cb1d65715d236b92a25
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
This commit is contained in:
Mårten Nordheim 2021-04-12 11:51:23 +02:00
parent ffd13e19a9
commit b67fe6dc7d
2 changed files with 24 additions and 31 deletions

View File

@ -166,6 +166,8 @@ QStringList QNetworkInformationPrivate::backendNames()
QNetworkInformation *QNetworkInformationPrivate::create(QStringView name) QNetworkInformation *QNetworkInformationPrivate::create(QStringView name)
{ {
if (name.isEmpty())
return nullptr;
if (!dataHolder()) if (!dataHolder())
return nullptr; return nullptr;
#ifdef DEBUG_LOADING #ifdef DEBUG_LOADING
@ -184,8 +186,6 @@ QNetworkInformation *QNetworkInformationPrivate::create(QStringView name)
return dataHolder->instanceHolder.get(); return dataHolder->instanceHolder.get();
QNetworkInformationBackend *backend = nullptr;
if (!name.isEmpty()) {
const auto nameMatches = [name](QNetworkInformationBackendFactory *factory) { const auto nameMatches = [name](QNetworkInformationBackendFactory *factory) {
return factory->name().compare(name, Qt::CaseInsensitive) == 0; return factory->name().compare(name, Qt::CaseInsensitive) == 0;
}; };
@ -210,14 +210,7 @@ QNetworkInformation *QNetworkInformationPrivate::create(QStringView name)
#ifdef DEBUG_LOADING #ifdef DEBUG_LOADING
qDebug() << "Creating instance using loader named " << (*it)->name(); qDebug() << "Creating instance using loader named " << (*it)->name();
#endif #endif
backend = (*it)->create({}); QNetworkInformationBackend *backend = (*it)->create({});
} else {
#ifdef DEBUG_LOADING
qDebug() << "Creating instance using loader named" << dataHolder->factories.front()->name();
#endif
if (!dataHolder->factories.isEmpty())
backend = dataHolder->factories.front()->create({});
}
if (!backend) if (!backend)
return nullptr; return nullptr;
dataHolder->instanceHolder.reset(new QNetworkInformation(backend)); dataHolder->instanceHolder.reset(new QNetworkInformation(backend));

View File

@ -78,7 +78,7 @@ public:
virtual bool supports(Features features) const; virtual bool supports(Features features) const;
static bool load(QStringView backend = {}); static bool load(QStringView backend);
static bool load(Features features); static bool load(Features features);
static QStringList availableBackends(); static QStringList availableBackends();
static QNetworkInformation *instance(); static QNetworkInformation *instance();