diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-03 09:34:20 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-03 16:30:27 +0100 |
commit | 61a84259e6a9604eb5ce0cd152256bf91d6571f5 (patch) | |
tree | 0b3a2117f4d983b00b2514ac2e8d0ba69a8da098 /cui | |
parent | 19c283eaa88248277a28fb1717bd30f0193e817c (diff) |
coverity#1242871 Unused value
Change-Id: I1204b904b446c2ec3132064e89aa6f20c5523470
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/optjava.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cui/source/options/optjava.cxx b/cui/source/options/optjava.cxx index 70aceafb3750..70bce9cdc5fb 100644 --- a/cui/source/options/optjava.cxx +++ b/cui/source/options/optjava.cxx @@ -720,8 +720,7 @@ bool SvxJavaOptionsPage::FillItemSet( SfxItemSet* /*rCoreSet*/ ) } eErr = jfw_setSelectedJRE( pInfo ); - DBG_ASSERT( JFW_E_NONE == eErr, - "SvxJavaOptionsPage::FillItemSet(): error in jfw_setSelectedJRE" ); + SAL_WARN_IF("cui.options", JFW_E_NONE != eErr, "SvxJavaOptionsPage::FillItemSet(): error in jfw_setSelectedJRE"); bModified = true; } } |