Remove excess logic.

This commit is contained in:
practicalswift
2017-04-10 10:24:49 +02:00
parent 813eacf81b
commit 9a763d4f86
3 changed files with 3 additions and 10 deletions

View File

@@ -181,7 +181,5 @@ void BanTableModel::sort(int column, Qt::SortOrder order)
bool BanTableModel::shouldShow()
{
if (priv->size() > 0)
return true;
return false;
return priv->size() > 0;
}