diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-11-16 17:54:26 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-11-16 20:24:16 +0100 |
commit | 591c305541306d41d3777ad5e2c92f875072e2d9 (patch) | |
tree | e0f4e9320a6a29a8e1d16e0f9daf1e2c1ec1f4f5 /qadevOOo/tests | |
parent | 2d6f56e4f7e492ba5394a86f13bc710bf6c68335 (diff) |
cid#1448447 silence RV: Bad use of return value
Change-Id: If24d5fffb4ecf86fa6a43d824b5e40fcef29a691
Reviewed-on: https://gerrit.libreoffice.org/82995
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'qadevOOo/tests')
-rw-r--r-- | qadevOOo/tests/java/ifc/frame/_XController.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qadevOOo/tests/java/ifc/frame/_XController.java b/qadevOOo/tests/java/ifc/frame/_XController.java index af467456e9e6..0419976a8ca2 100644 --- a/qadevOOo/tests/java/ifc/frame/_XController.java +++ b/qadevOOo/tests/java/ifc/frame/_XController.java @@ -153,7 +153,8 @@ public class _XController extends MultiMethodTest { log.println("as expected, see #82938"); } tRes.tested("attachModel()", result); - oObj.attachModel(firstModel); + boolean bResult = oObj.attachModel(firstModel); + log.println("attachModel() --> " + bResult); } /** |