coverity#1327460 DLS: Dead local store

Change-Id: I53431357f153d61d3f80e9a3e76358d8e9bb0e0b
This commit is contained in:
Caolán McNamara
2015-10-20 14:54:36 +01:00
parent b23deda0bb
commit fb8d764d84

View File

@@ -449,9 +449,12 @@ public class java_remote_bridge
* @see com.sun.star.uno.IBridge#acquire * @see com.sun.star.uno.IBridge#acquire
*/ */
public void acquire() { public void acquire() {
int x = _life_count.incrementAndGet(); if(DEBUG) {
int x = _life_count.incrementAndGet();
if(DEBUG) System.err.println("##### " + getClass().getName() + ".acquire:" + x); System.err.println("##### " + getClass().getName() + ".acquire:" + x);
} else {
_life_count.incrementAndGet();
}
} }
/** /**