Kaydet (Commit) fb8d764d authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1327460 DLS: Dead local store

Change-Id: I53431357f153d61d3f80e9a3e76358d8e9bb0e0b
üst b23deda0
......@@ -449,9 +449,12 @@ public class java_remote_bridge
* @see com.sun.star.uno.IBridge#acquire
*/
public void acquire() {
int x = _life_count.incrementAndGet();
if(DEBUG) System.err.println("##### " + getClass().getName() + ".acquire:" + x);
if(DEBUG) {
int x = _life_count.incrementAndGet();
System.err.println("##### " + getClass().getName() + ".acquire:" + x);
} else {
_life_count.incrementAndGet();
}
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment