summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/container/_XIndexAccess.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/container/_XIndexAccess.java')
-rw-r--r--qadevOOo/tests/java/ifc/container/_XIndexAccess.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/qadevOOo/tests/java/ifc/container/_XIndexAccess.java b/qadevOOo/tests/java/ifc/container/_XIndexAccess.java
index c87a62baaf23..e9bcad12b2b2 100644
--- a/qadevOOo/tests/java/ifc/container/_XIndexAccess.java
+++ b/qadevOOo/tests/java/ifc/container/_XIndexAccess.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -125,16 +125,16 @@ public class _XIndexAccess extends MultiMethodTest {
tRes.tested("getByIndex()", result);
} // end getByIndex
-
+
private boolean checkGetByIndex(int index){
Object o = null;
boolean result = true;
try {
log.println("getByIndex(" + index + ")");
o = oObj.getByIndex(index);
-
+
if ( tEnv.getObjRelation("XIndexAccess.getByIndex.mustBeNull") != null){
- result = (o == null);
+ result = (o == null);
if (result) log.println("OK"); else log.println("FAILED -> not null");
} else {
result = (o != null);
@@ -148,7 +148,7 @@ public class _XIndexAccess extends MultiMethodTest {
log.println("Exception! " + e);
result = false;
}
-
+
return result;
}