forked from qt-creator/qt-creator
Fix coding style for else statements
Change-Id: I1309db70e98d678e150388c76ce665e988fdf081 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
This commit is contained in:
committed by
Orgad Shaneh
parent
c67f7f6349
commit
ad9e7ccab6
@@ -1183,9 +1183,9 @@ void PluginManagerPrivate::readPluginPaths()
|
||||
|
||||
PluginCollection *collection = 0;
|
||||
// find correct plugin collection or create a new one
|
||||
if (pluginCategories.contains(spec->category()))
|
||||
if (pluginCategories.contains(spec->category())) {
|
||||
collection = pluginCategories.value(spec->category());
|
||||
else {
|
||||
} else {
|
||||
collection = new PluginCollection(spec->category());
|
||||
pluginCategories.insert(spec->category(), collection);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user