Kaydet (Commit) 367bf4d3 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:simplifybool

Change-Id: Ifb229db31ba6d97c4ec9ca586210c1f3c4b89521
üst 4bf8384d
......@@ -586,7 +586,7 @@ sal_Bool SAL_CALL OLESimpleStorage::hasByName( const OUString& aName )
throw uno::RuntimeException(); // TODO:
}
return bResult ? sal_True : sal_False;
return bResult;
}
......@@ -622,7 +622,7 @@ sal_Bool SAL_CALL OLESimpleStorage::hasElements()
throw uno::RuntimeException(); // TODO:
}
return aList.size() != 0 ? sal_True : sal_False;
return aList.size() != 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment