summaryrefslogtreecommitdiff
path: root/javaunohelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-27 15:28:05 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-27 15:30:57 +0200
commitd3273a06eb5aa7515e5e67ed399c3a699b555485 (patch)
tree0018f7aa1a709a2fa85a343736cfb705f9c17b96 /javaunohelper
parentb47ae9d0f65ff7c06cfa4366eb56ee12d1d6e82c (diff)
More loplugin:simplifybool
Change-Id: I4749145f12a8f22bc8cd13722ad38096a2c4720e
Diffstat (limited to 'javaunohelper')
-rw-r--r--javaunohelper/source/javaunohelper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/javaunohelper/source/javaunohelper.cxx b/javaunohelper/source/javaunohelper.cxx
index 52ec161230f8..d91a081781c1 100644
--- a/javaunohelper/source/javaunohelper.cxx
+++ b/javaunohelper/source/javaunohelper.cxx
@@ -128,7 +128,7 @@ jboolean Java_com_sun_star_comp_helper_SharedLibraryLoader_component_1writeInfo(
}
}
#endif
- return bRet == false? JNI_FALSE : JNI_TRUE;
+ return bRet ? JNI_TRUE : JNI_FALSE;
}
/*