Style: Don't put an else after a return.

Change-Id: I41d031d92489e5539f293c30a6257310f2a1c657
Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@nokia.com>
This commit is contained in:
Stephen Kelly 2012-04-01 20:25:33 +02:00 committed by Qt by Nokia
parent 4953093873
commit aec8bac313

View File

@ -2503,8 +2503,7 @@ bool QVariant::canConvert(int targetTypeId) const
if (targetTypeId == String && currentType == StringList)
return v_cast<QStringList>(&d)->count() == 1;
else
return qCanConvertMatrix[targetTypeId] & (1 << currentType);
return qCanConvertMatrix[targetTypeId] & (1 << currentType);
}
/*!