diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-10-27 20:41:36 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-10-28 20:45:53 +0000 |
commit | 0d8f7f69c632c34621cac46db5358ebc908434f6 (patch) | |
tree | 4a7f3951cda36255c1db0bed9c6c5aa3d29b20ad /qadevOOo | |
parent | b56088673094374cd20b0e62ce7e3a94ef30a6fc (diff) |
coverity#1326106 Missing call to superclass
Change-Id: I546d3a1be35c627b4fe36972620eefd4ee099e7f
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/tests/java/ifc/text/_BaseIndex.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qadevOOo/tests/java/ifc/text/_BaseIndex.java b/qadevOOo/tests/java/ifc/text/_BaseIndex.java index 37fc8e7863cb..017d4a881f3d 100644 --- a/qadevOOo/tests/java/ifc/text/_BaseIndex.java +++ b/qadevOOo/tests/java/ifc/text/_BaseIndex.java @@ -145,6 +145,9 @@ public class _BaseIndex extends MultiPropertyTest { Object newValue, Object resValue, Exception exception) throws Exception { + + super.checkResult(propName, oldValue, newValue, resValue, exception); + PropertyValue[][] res = (PropertyValue[][]) UnoRuntime.queryInterface( XIndexAccess.class, resValue).getByIndex(0); |