diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-10-15 10:50:51 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-10-15 11:38:58 +0100 |
commit | ae0bfef96ae4857d57268fcb00285cad4802b05b (patch) | |
tree | 1d76fcf5924782057c14e43df142308dccc7b91b /qadevOOo | |
parent | a97b102ea0687eab9d2c1d49f90b197ebae7273f (diff) |
coverity#1326728 USELESS_STRING: Useless/non-informative string generated
Change-Id: I264d7d89f0f8a420d04081541bf0a8a4708c9b58
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/tests/java/ifc/lang/_XTypeProvider.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/qadevOOo/tests/java/ifc/lang/_XTypeProvider.java b/qadevOOo/tests/java/ifc/lang/_XTypeProvider.java index 66186214271d..1d13d9f28365 100644 --- a/qadevOOo/tests/java/ifc/lang/_XTypeProvider.java +++ b/qadevOOo/tests/java/ifc/lang/_XTypeProvider.java @@ -43,11 +43,9 @@ public class _XTypeProvider extends MultiMethodTest { * Has <b>OK</b> status if no runtime exceptions occurred. */ public void _getImplementationId() { - boolean result = true; log.println("testing getImplementationId() ... "); - log.println("The ImplementationId is "+oObj.getImplementationId()); - result = true; + boolean result = oObj.getImplementationId().length > 0; tRes.tested("getImplementationId()", result); |