From acd3b6e624d7e853374c1e9c7b894a8eb1a6f8e4 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 10 Apr 2013 09:35:19 -0500 Subject: workaround IBM java 1.5.0 inconvertible types error Change-Id: I84533723e9f42a27e2942c28b53232630db82e10 --- ridljar/com/sun/star/lib/uno/typedesc/TypeDescription.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ridljar') diff --git a/ridljar/com/sun/star/lib/uno/typedesc/TypeDescription.java b/ridljar/com/sun/star/lib/uno/typedesc/TypeDescription.java index f532133299d2..7f1efcfbcf8c 100644 --- a/ridljar/com/sun/star/lib/uno/typedesc/TypeDescription.java +++ b/ridljar/com/sun/star/lib/uno/typedesc/TypeDescription.java @@ -676,7 +676,8 @@ public final class TypeDescription implements ITypeDescription { private void cleanUp() { for (;;) { - Entry e = (Entry) queue.poll(); + Object tmp = queue.poll(); + Entry e = (Entry)tmp; if (e == null) { break; } -- cgit v1.2.3