From cd9cafe54c87768ddde007228dc1d3f3b7e68f92 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 22 Jan 2016 12:47:47 +0100 Subject: cid#1326191 is a false positive and trying to appease Coverity with throwing a (checked---semantics attached!) java.io.IOException is plain wrong. Change-Id: Icece5ac74d482791d089f40ec201bc39d61db177 --- jurt/com/sun/star/lib/uno/protocols/urp/urp.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'jurt') diff --git a/jurt/com/sun/star/lib/uno/protocols/urp/urp.java b/jurt/com/sun/star/lib/uno/protocols/urp/urp.java index cea15dbf1b2b..5e7b3288866c 100644 --- a/jurt/com/sun/star/lib/uno/protocols/urp/urp.java +++ b/jurt/com/sun/star/lib/uno/protocols/urp/urp.java @@ -619,10 +619,8 @@ public final class urp implements IProtocol { for (int i = releaseQueue.size(); i > 0;) { --i; QueuedRelease r = releaseQueue.get(i); - if (r == null) - throw new IOException("releaseQueue unexpected empty"); writeRequest( - r.internal, r.objectId, r.type, r.method, r.threadId, null, + r.internal, r.objectId, r.type, r.method, r.threadId, null, false); releaseQueue.remove(i); } -- cgit