summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/reflection/_XTypeDescriptionEnumerationAccess.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/reflection/_XTypeDescriptionEnumerationAccess.java')
-rw-r--r--qadevOOo/tests/java/ifc/reflection/_XTypeDescriptionEnumerationAccess.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/qadevOOo/tests/java/ifc/reflection/_XTypeDescriptionEnumerationAccess.java b/qadevOOo/tests/java/ifc/reflection/_XTypeDescriptionEnumerationAccess.java
index 615d12f18a35..a53278a46ea8 100644
--- a/qadevOOo/tests/java/ifc/reflection/_XTypeDescriptionEnumerationAccess.java
+++ b/qadevOOo/tests/java/ifc/reflection/_XTypeDescriptionEnumerationAccess.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
@@ -61,15 +61,15 @@ public class _XTypeDescriptionEnumerationAccess extends MultiMethodTest {
return;
}
try {
- XTypeDescriptionEnumeration oEnum =
- oObj.createTypeDescriptionEnumeration(sString, tClass,
+ XTypeDescriptionEnumeration oEnum =
+ oObj.createTypeDescriptionEnumeration(sString, tClass,
TypeDescriptionSearchDepth.INFINITE);
try {
log.println("Got an enumeration.");
while (true) {
XTypeDescription desc = oEnum.nextTypeDescription();
i++;
- log.println("\tdesc name: " + desc.getName());
+ log.println("\tdesc name: " + desc.getName());
}
}
catch(com.sun.star.container.NoSuchElementException e) {