Kaydet (Commit) 9017fee6 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:simplifybool

Change-Id: If6084771aaa9d2bdc7ffca7550749cbb3bf8e084
üst 6a97d9c4
......@@ -82,7 +82,7 @@ Sequence<sal_Int8> SAL_CALL TextHtmlToHTMLFormat(Sequence<sal_Int8> const & aTex
{
OSL_ASSERT(aTextHtml.getLength() > 0);
if (!(aTextHtml.getLength() > 0))
if (aTextHtml.getLength() <= 0)
return Sequence<sal_Int8>();
// fill the buffer with dummy values to calc the exact length
......
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