summaryrefslogtreecommitdiff
path: root/ridljar/test/com/sun/star/lib/uno/typedesc/TypeDescription_Test.java
diff options
context:
space:
mode:
Diffstat (limited to 'ridljar/test/com/sun/star/lib/uno/typedesc/TypeDescription_Test.java')
-rw-r--r--ridljar/test/com/sun/star/lib/uno/typedesc/TypeDescription_Test.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/ridljar/test/com/sun/star/lib/uno/typedesc/TypeDescription_Test.java b/ridljar/test/com/sun/star/lib/uno/typedesc/TypeDescription_Test.java
index c110b6de4de7..1caf962fe766 100644
--- a/ridljar/test/com/sun/star/lib/uno/typedesc/TypeDescription_Test.java
+++ b/ridljar/test/com/sun/star/lib/uno/typedesc/TypeDescription_Test.java
@@ -127,8 +127,7 @@ public final class TypeDescription_Test {
@Test public void testUnsigned() throws ClassNotFoundException {
assertEquals(
"TypeDescription for UNSIGNED LONG", "unsigned long",
- (TypeDescription.getTypeDescription(Type.UNSIGNED_LONG).
- getTypeName()));
+ TypeDescription.getTypeDescription(Type.UNSIGNED_LONG).getTypeName());
}
@Test public void testGetMethodDescription() {
@@ -139,8 +138,7 @@ public final class TypeDescription_Test {
@Test public void testSequence() throws ClassNotFoundException {
assertEquals(
"unsigned short",
- (TypeDescription.getTypeDescription("[]unsigned short").
- getComponentType().getTypeName()));
+ TypeDescription.getTypeDescription("[]unsigned short").getComponentType().getTypeName());
}
public interface XBase extends XInterface {